File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 27
27
strategy :
28
28
matrix :
29
29
os : ["ubuntu-24.04", "macos-14", "windows-2022"]
30
- node-version : [18 .x, 20 .x, 22 .x]
30
+ node-version : [20 .x, 22 .x, 24 .x]
31
31
# See supported Node.js release schedule
32
32
# at https://nodejs.org/en/about/releases/
33
33
permissions :
43
43
- name : Set up Node.js
44
44
uses : actions/setup-node@v4
45
45
with :
46
- node-version : 22.x
46
+ node-version : ${{ matrix.node-version }}
47
47
48
48
- name : Install ESLint
49
49
run : |
Original file line number Diff line number Diff line change 23
23
- name : Set up Node.js
24
24
uses : actions/setup-node@v4
25
25
with :
26
- node-version : 22 .x
26
+ node-version : 24 .x
27
27
28
28
- name : Install dependencies
29
29
run : npm ci --verbose
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ on: # yamllint disable-line rule:truthy
11
11
workflow_dispatch :
12
12
13
13
jobs :
14
- build :
14
+ test :
15
15
name : NodeJS Jest CI Test
16
16
runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
matrix :
19
19
os : ["ubuntu-24.04", "macos-14", "windows-2022"]
20
- node-version : [18 .x, 20 .x, 22 .x]
20
+ node-version : [20 .x, 22 .x, 24 .x]
21
21
# See supported Node.js release schedule
22
22
# at https://nodejs.org/en/about/releases/
23
23
You can’t perform that action at this time.
0 commit comments