From ad1339b07741d5c915d74dc09a2949719226cf46 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 15:10:54 +0800 Subject: [PATCH] chore: update test.yml --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 666ba924e..b1bff594e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Node CI -on: [push] +on: [push, pull_request] jobs: run: @@ -10,12 +10,16 @@ jobs: - uses: actions/setup-node@v1 with: node-version: '12.x' + - name: Install dependencies run: yarn + - name: Run linter run: npm run lint + - name: Run test cases run: npm test + - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: