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 37ccf0c commit 81092d4Copy full SHA for 81092d4
.github/workflows/coverage.yml
@@ -5,20 +5,20 @@ on: [push, pull_request]
5
jobs:
6
build:
7
8
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
9
10
strategy:
11
matrix:
12
- node-version: [16.x]
+ node-version: [18.x, 20.x, 22.x]
13
14
steps:
15
- name: Checkout repository
16
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
17
with:
18
- fetch-depth: 2
+ fetch-depth: 2
19
20
- name: Set up Node.js ${{ matrix.node-version }}
21
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
22
23
node-version: ${{ matrix.node-version }}
24
@@ -32,4 +32,4 @@ jobs:
32
- name: Upload coverage to Codecov
33
uses: codecov/codecov-action@v2
34
35
- token: ${{ secrets.CODECOV_TOKEN }}
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments