We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6993a4 commit 925caaaCopy full SHA for 925caaa
1 file changed
.github/workflows/test.yml
@@ -48,11 +48,16 @@ jobs:
48
- name: Install npm dependencies
49
run: npm ci
50
51
- - name: Run tests
+ - name: Run full tests
52
run: npm run test:coverage
53
+ if: matrix.os == 'ubuntu-latest'
54
+
55
+ - name: Run tests
56
+ run: npm run test
57
+ if: matrix.os == 'windows-latest'
58
59
- name: Run Coveralls
60
uses: coverallsapp/[email protected]
61
+ if: matrix.os == 'ubuntu-latest' && matrix.node == 16
62
with:
63
github-token: "${{ secrets.GITHUB_TOKEN }}"
- if: matrix.architecture == ubuntu-latest && matrix.node == 16
0 commit comments