Skip to content

Commit 03bc815

Browse files
authored
chore: only test against node@16 & node@24 (#145)
* chore: test against Node 24 and update GitHub Actions * format
1 parent 22cc385 commit 03bc815

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [16.x, 18.x, 20.x]
14+
node-version: [16.x, 24.x]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
check-latest: true
@@ -26,7 +26,7 @@ jobs:
2626
env:
2727
CI: true
2828
- name: Send Report to Coveralls
29-
uses: coverallsapp/github-action@v1.1.1
29+
uses: coverallsapp/github-action@v2
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
parallel: true
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Send Parallel Finished
39-
uses: coverallsapp/github-action@v1.1.1
39+
uses: coverallsapp/github-action@v2
4040
with:
4141
github-token: ${{ secrets.GITHUB_TOKEN }}
4242
parallel-finished: true

0 commit comments

Comments
 (0)