Skip to content

Commit c5fe884

Browse files
committed
ci: update workflow
1 parent c4a5706 commit c5fe884

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest]
10-
node-version: [20.x, 21.x]
10+
node-version: [22.x, 23.x, 24.x]
1111
steps:
1212
- name: Check out repository code
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Use Node.js ${{ matrix.node-version }}
15-
uses: actions/setup-node@v3
15+
uses: actions/setup-node@v4
1616
with:
1717
node-version: ${{ matrix.node-version }}
1818
cache: 'npm'
@@ -25,10 +25,10 @@ jobs:
2525
- name: Test
2626
run: npm run test
2727
- name: Upload coverage report
28-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '21.x' }}
29-
uses: codecov/codecov-action@v3
28+
uses: codecov/codecov-action@v5
29+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '24.x' }}
3030
- name: SonarQube Scan
31-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '21.x' }}
3231
uses: SonarSource/sonarqube-scan-action@v4
3332
env:
3433
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
34+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '24.x' }}

0 commit comments

Comments
 (0)