Skip to content

Commit

Permalink
ci: run windows tests without enforcing full coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Oct 2, 2023
1 parent 4f18d23 commit 93067ec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,10 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run Tests
- name: Run Tests Windows (incomplete coverage)
if: matrix.platform.os == 'windows-latest'
run: npm test -- -c -t0 --allow-incomplete-coverage

- name: Run Tests Unix (complete coverage)
if: matrix.platform.os != 'windows-latest'
run: npm test -- -c -t0

0 comments on commit 93067ec

Please sign in to comment.