trustwallet-assets/.github/workflows/pr-ci.yml
Adam R 294d8bcb5d
[internal] Fixes and Checks: separate into consistency and sanity (#3197)
* rename to sanityFix
* Infra for consistency checks and Fixes.
* Whitelist check moved to consistency check only.

Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2020-08-10 10:56:41 +02:00

23 lines
450 B
YAML

name: Pull Request CI
on:
push:
branches:
- '*'
- '!master'
pull_request:
branches: [master]
workflow_dispatch:
jobs:
pull_request_ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- uses: bahmutov/npm-install@v1
- name: Run check (sanity only)
run: npm run check-sanity
- name: Run test
run: npm t