chore: fix test.yml

This commit is contained in:
陈嘉涵 2019-12-19 14:49:31 +08:00
parent e2af4744f6
commit 4f8371b847

View File

@ -3,22 +3,20 @@ name: Node CI
on: [push]
jobs:
build:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
- run: yarn
run: yarn
- name: Run linter
- run: npm run lint
run: npm run lint
- name: Run test cases
- run: npm test
run: npm test
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}