We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4a118 commit ff4c4c9Copy full SHA for ff4c4c9
1 file changed
.github/workflows/ci.yml
@@ -13,16 +13,16 @@ jobs:
13
fail-fast: false
14
matrix:
15
os: [ubuntu-latest, windows-latest, macos-latest]
16
- node-version: [18.0.0, 18.x, 20.0.0, 20.x]
+ node-version: [18.x, 20.x, 22.x]
17
18
runs-on: ${{ matrix.os }}
19
20
steps:
21
- name: Checkout repository
22
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
23
24
- name: Set up Node.js ${{ matrix.node-version }}
25
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
26
with:
27
node-version: ${{ matrix.node-version }}
28
@@ -33,4 +33,7 @@ jobs:
33
run: npm run test-node
34
35
- name: Upload coverage to Codecov
36
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v5
37
+ with:
38
+ token: ${{ secrets.CODECOV_TOKEN }}
39
+ flags: unittests
0 commit comments