mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
19 lines
368 B
YAML
19 lines
368 B
YAML
|
name: Test
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
token: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
- name: Install Dependencies
|
||
|
run: npm ci
|
||
|
- name: Run test
|
||
|
run: npm t
|