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 7dbca5c commit a955585Copy full SHA for a955585
.github/workflows/test.yaml
@@ -12,12 +12,12 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [18.x, 20.x, 21.x]
+ node-version: [18.x, 20.x, 22.x, 23.x]
16
17
steps:
18
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
19
- name: Use Node.js ${{ matrix.node-version }}
20
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
21
with:
22
node-version: ${{ matrix.node-version }}
23
- run: npm ci
@@ -26,4 +26,6 @@ jobs:
26
env:
27
CI: true
28
- name: Upload coverage reports
29
- run: npx codecov -f coverage/*.json
+ uses: codecov/codecov-action@v5
30
+ env:
31
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments