File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,18 @@ concurrency:
15
15
16
16
jobs :
17
17
tests :
18
- runs-on : ${{ matrix.os }}
18
+ runs-on : ubuntu-latest
19
19
if : github.event.pull_request.draft == false
20
20
21
- strategy :
22
- matrix :
23
- os : [ubuntu-latest]
24
- node : [18, 20]
25
-
26
21
steps :
27
22
- name : Check out repository
28
23
uses : actions/checkout@v4
29
24
30
25
- name : Install Node.js
31
26
uses : actions/setup-node@v4
32
27
with :
33
- node-version : ${{ matrix.node }}
28
+ node-version : 20
29
+ registry-url : ' https://registry.npmjs.org'
34
30
35
31
- name : Update NPM to latest
36
32
run : npm install npm@latest -g
Original file line number Diff line number Diff line change 5
5
"types" : " ./dist/index.d.ts" ,
6
6
"type" : " module" ,
7
7
"engines" : {
8
- "node" : " >=18 .0.0"
8
+ "node" : " >=20 .0.0"
9
9
},
10
10
"dependencies" : {
11
11
"adm-zip" : " 0.5.16" ,
You can’t perform that action at this time.
0 commit comments