Skip to content

Commit 3cf1680

Browse files
authored
deps: update dependencies (#8)
Update node and actions dependencies
2 parents 7dbca5c + b5b35ae commit 3cf1680

File tree

3 files changed

+2091
-5071
lines changed

3 files changed

+2091
-5071
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
name: Test
22

3-
on:
4-
push:
5-
branches: [ main ]
6-
pull_request:
7-
branches: [ main ]
3+
on: [push, pull_request]
84

95
jobs:
106
build:
117
runs-on: ubuntu-latest
128

139
strategy:
1410
matrix:
15-
node-version: [18.x, 20.x, 21.x]
11+
node-version: [18.x, 20.x, 22.x, 23.x]
1612

1713
steps:
18-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1915
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v3
16+
uses: actions/setup-node@v4
2117
with:
2218
node-version: ${{ matrix.node-version }}
2319
- run: npm ci
@@ -26,4 +22,6 @@ jobs:
2622
env:
2723
CI: true
2824
- name: Upload coverage reports
29-
run: npx codecov -f coverage/*.json
25+
uses: codecov/codecov-action@v5
26+
env:
27+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)