Skip to content

Commit 74a4d18

Browse files
committed
chore: switched to coveralls
1 parent 223ed7b commit 74a4d18

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/test.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,31 @@ on:
44
- push
55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88
strategy:
99
matrix:
1010
node:
1111
- '18'
1212
- '20'
1313
- '22'
14+
- '23'
1415
steps:
1516
- uses: actions/checkout@v4
1617
- uses: actions/setup-node@v4
1718
with:
1819
node-version: ${{ matrix.node }}
1920
- run: npm install
2021
- run: npm test
21-
- 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+
runs-on: ubuntu-24.04
30+
steps:
31+
- uses: coverallsapp/github-action@v2
32+
with:
33+
github-token: ${{ secrets.GITHUB_TOKEN }}
34+
parallel-finished: true

0 commit comments

Comments
 (0)