We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f0900 commit b4e69bfCopy full SHA for b4e69bf
.github/workflows/main.yml
@@ -71,20 +71,13 @@ jobs:
71
run: npm ci
72
73
- name: Run tests
74
+ if: matrix.node-version != 22
75
run: npm test -- --coverage
76
- - name: Collect coverage
77
- uses: coverallsapp/github-action@v2
78
- with:
79
- flag-name: run-${{ join(matrix.*, '-') }}
80
- parallel: true
+ - name: Run tests with coverage
+ if: matrix.node-version == 22
+ run: npm test -- --coverage
81
82
- coverage:
83
- name: Publish coverage
84
- needs: test
85
- runs-on: ubuntu-latest
86
- steps:
87
- - name: Publish coverage
+ - name: Collect coverage
88
uses: coverallsapp/github-action@v2
89
90
- parallel-finished: true
0 commit comments