trustwallet-assets/.github/workflows/fix-dryrun.yml
Workflow config file is invalid. Please check your config file: EOF
Daniel 0b29b70a50
New sanity check (Golang) (#15960)
* Add config and main.go script for ci

* Add new sanity-check to PR CI

* fix invalid logo's

* Turn on fix-dryrun
2021-11-22 23:34:56 +03:00

25 lines
632 B
YAML

# name: Fixes (sanity and consistency) - Dry run
# on:
# pull_request:
# branches: [master]
# jobs:
# fix-all-dryrun:
# 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
# run: |
# git status
# git diff
# - name: Run check
# run: npm run check
# - name: Run test
# run: npm t