File tree Expand file tree Collapse file tree 1 file changed +5
-16
lines changed Expand file tree Collapse file tree 1 file changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,10 @@ jobs:
37
37
- uses : actions/checkout@v4
38
38
39
39
- name : Use Node.js ${{ matrix.node-version }}
40
- uses : actions/setup-node@v3
40
+ uses : actions/setup-node@v4
41
41
with :
42
42
node-version : ${{ matrix.node-version }}
43
43
44
- # workaround for failing tests on Node.js 14.x
45
- # see https://github.com/actions/setup-node/issues/411
46
- - name : Force install specific npm version
47
- run : |
48
- npm install --global npm@8.3.1
49
- npm install --global npm@9.7.1
50
-
51
44
- name : Install
52
45
run : |
53
46
npm install
@@ -64,17 +57,13 @@ jobs:
64
57
name : License check
65
58
runs-on : ubuntu-latest
66
59
67
- strategy :
68
- matrix :
69
- node-version : [22.x]
70
-
71
60
steps :
72
- - uses : actions/checkout@v3
61
+ - uses : actions/checkout@v4
73
62
74
- - name : Use Node.js ${{ matrix.node-version }}
75
- uses : actions/setup-node@v3
63
+ - name : Use Node.js
64
+ uses : actions/setup-node@v4
76
65
with :
77
- node-version : ${{ matrix.node-version }}
66
+ node-version : 22.x
78
67
79
68
- name : Install
80
69
run : |
You can’t perform that action at this time.
0 commit comments