diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f440e4b..bea292e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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