Skip to content

Commit d4c5309

Browse files
author
Dong Nguyen
committed
Update CI config
1 parent 9ad2f28 commit d4c5309

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/ci-test.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,25 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node_version: [20.x, 22.x, 24.x]
15+
node_version: [22.x, 24.x, 25.x]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919

2020
- name: setup Node.js v${{ matrix.node_version }}
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: ${{ matrix.node_version }}
2424

2525
- name: run npm scripts
26-
env:
27-
PROXY_SERVER: ${{ secrets.PROXY_SERVER }}
2826
run: |
2927
npm install
3028
npm run lint
31-
npm run build --if-present
29+
#npm run build --if-present
3230
npm run test
3331
3432
- name: cache node modules
35-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3634
with:
3735
path: ~/.npm
3836
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

0 commit comments

Comments
 (0)