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 223ed7b commit 74a4d18Copy full SHA for 74a4d18
.github/workflows/test.yaml
@@ -4,18 +4,31 @@ on:
4
- push
5
jobs:
6
test:
7
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
8
strategy:
9
matrix:
10
node:
11
- '18'
12
- '20'
13
- '22'
14
+ - '23'
15
steps:
16
- uses: actions/checkout@v4
17
- uses: actions/setup-node@v4
18
with:
19
node-version: ${{ matrix.node }}
20
- run: npm install
21
- run: npm test
- - uses: codecov/codecov-action@v5
22
+ - uses: coverallsapp/github-action@v2
23
+ with:
24
+ flag-name: run Node v${{ matrix.node }}
25
+ github-token: ${{ secrets.GITHUB_TOKEN }}
26
+ parallel: true
27
+ finally:
28
+ needs: test
29
30
+ steps:
31
32
33
34
+ parallel-finished: true
0 commit comments