trustwallet-assets/.github/workflows/fix-dryrun.yml
Adam R dd89649082
Fix-pr does not work, due to credentials issue; removing it. (#3052)
Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2020-08-05 12:59:39 +02:00

27 lines
568 B
YAML

name: Fixes and Consistency Updates - Dry run
on:
push:
branches:
- '*'
- '!master'
pull_request:
branches: [master]
jobs:
scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: npm ci
- name: Run fix script
run: npm run fix
- name: Show fix result (diff); run 'npm run fix' locally
if: success()
run: git status
- name: Run test
run: npm t