From 4f8371b847081941f43b7237f4735d16cb16ac47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Thu, 19 Dec 2019 14:49:31 +0800 Subject: [PATCH] chore: fix test.yml --- .github/workflows/test.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e3c56c93..666ba924e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }}