trustwallet-assets/.github/workflows/check.yml
Adam R 316c72eb9f
Experiment with manual-trigger for builds. (#3165)
Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2020-08-08 22:46:34 +02:00

20 lines
382 B
YAML

name: Check
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
check:
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 check
run: npm run check
- name: Run test
run: npm t