Skip to content

Commit

Permalink
only generate coverage on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoTheThird committed Dec 1, 2020
1 parent ca05e7a commit 72c248d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: test-nocover
run: |
npm install
npm run test-nocover
# only generate coverage on linux
- name: test
if: contains(runner.os, 'Linux')
run: |
npm install
npm run test
Expand Down

0 comments on commit 72c248d

Please sign in to comment.