File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ concurrency:
4
4
cancel-in-progress : true
5
5
on :
6
6
pull_request :
7
- push :
7
+ push :
8
8
branches : [main]
9
9
defaults :
10
10
run :
@@ -149,7 +149,7 @@ jobs:
149
149
submodules : true
150
150
- uses : actions/setup-node@v3
151
151
with :
152
- node-version : 18
152
+ node-version : 19
153
153
154
154
- name : Download Engine
155
155
uses : actions/download-artifact@v3
@@ -245,7 +245,7 @@ jobs:
245
245
uses : actions/checkout@v3
246
246
- uses : actions/setup-node@v3
247
247
with :
248
- node-version : 18
248
+ node-version : 19
249
249
250
250
- name : Set up Fastly CLI
251
251
uses : fastly/compute-actions/setup@v4
@@ -334,11 +334,14 @@ jobs:
334
334
if : github.ref != 'refs/heads/main'
335
335
runs-on : ubuntu-latest
336
336
needs : [build]
337
+ strategy :
338
+ matrix :
339
+ node-version : [18, 19]
337
340
steps :
338
341
- uses : actions/checkout@v3
339
342
- uses : actions/setup-node@v3
340
343
with :
341
- node-version : 18
344
+ node-version : ${{ matrix.node-version }}
342
345
- name : Download Engine
343
346
uses : actions/download-artifact@v3
344
347
with :
Original file line number Diff line number Diff line change 2
2
"name" : " @fastly/js-compute" ,
3
3
"version" : " 1.8.0" ,
4
4
"engines" : {
5
- "node" : " 16 - 18 " ,
5
+ "node" : " 16 - 20 " ,
6
6
"npm" : " ^8 || ^9"
7
7
},
8
8
"license" : " Apache-2.0" ,
You can’t perform that action at this time.
0 commit comments