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 a786278 commit 5415fe8Copy full SHA for 5415fe8
.github/workflows/test.yml
@@ -10,6 +10,8 @@ jobs:
10
11
strategy:
12
matrix:
13
+ # If you change these, don't forget to update carryforward in the finish
14
+ # step as well.
15
node-version: [14, 16, 18]
16
17
steps:
@@ -28,3 +30,17 @@ jobs:
28
30
uses: coverallsapp/github-action@v2
29
31
with:
32
github-token: ${{ secrets.GITHUB_TOKEN }}
33
+ parallel: true
34
+ flag-name: ${{ matrix.node-version }}
35
+
36
+ finish:
37
+ needs: test
38
+ if: ${{ always() }}
39
+ runs-on: ubuntu-latest
40
+ steps:
41
+ - name: Coveralls Finished
42
+ uses: coverallsapp/github-action@v2
43
+ with:
44
+ github-token: ${{ secrets.GITHUB_TOKEN }}
45
+ parallel-finished: true
46
+ carryforward: "14,16,18"
0 commit comments