File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ jobs:
15
15
node-version : [18.x, 20.x, 22.x, 24.x]
16
16
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
+ with :
20
+ submodules : recursive # Required for JSON Schema Test Suite submodule
19
21
20
22
- name : Use Node.js ${{ matrix.node-version }}
21
- uses : actions/setup-node@v3
23
+ uses : actions/setup-node@v4
22
24
with :
23
25
node-version : ${{ matrix.node-version }}
24
26
cache : " npm"
29
31
- name : Build
30
32
run : npm run build
31
33
32
- - name : Test
34
+ - name : Test (including JSON Schema Test Suite)
33
35
run : npm test
34
36
35
37
- name : Generate coverage badge
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
+ with :
14
+ submodules : recursive # Required for JSON Schema Test Suite submodule
13
15
14
16
- name : Use Node.js
15
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v4
16
18
with :
17
19
node-version : ' 18.x'
18
20
registry-url : ' https://registry.npmjs.org'
You can’t perform that action at this time.
0 commit comments