File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - uses : actions/checkout@v4
10- - name : Use Node.js 22.x
10+ - name : Use Node.js 24
1111 uses : actions/setup-node@v4
1212 with :
13- node-version : 22.x
13+ node-version : 24
1414 cache : ' npm'
1515 - run : npm ci
1616 - run : npm run build
4242 - name : Setup Node.js
4343 uses : actions/setup-node@v4
4444 with :
45- node-version : 22
45+ node-version : 24
4646 cache : ' npm'
4747 - uses : actions/download-artifact@v4
4848 with :
8181 strategy :
8282 matrix :
8383 os : [ ubuntu-latest, windows-latest ]
84- node-version : [ 8, 22 ]
84+ node-version : [ 8, 24 ]
8585
8686 runs-on : ${{ matrix.os }}
8787 steps :
@@ -97,13 +97,13 @@ jobs:
9797 name : build
9898
9999 - name : Run all tests
100- if : matrix.os == 'ubuntu-latest' && matrix.node-version == 22
100+ if : matrix.os == 'ubuntu-latest' && matrix.node-version == 24
101101 run : |
102102 npm ci
103103 npm run test
104104 timeout-minutes : 1
105105
106106 - name : Run units
107- if : matrix.os != 'ubuntu-latest' || matrix.node-version != 22
107+ if : matrix.os != 'ubuntu-latest' || matrix.node-version != 24
108108 run : npm run test:smoke:cjs
109109 timeout-minutes : 1
You can’t perform that action at this time.
0 commit comments