File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,10 @@ on: [push]
4
4
5
5
jobs :
6
6
lint :
7
+ strategy :
8
+ matrix :
9
+ target : ['22.6']
7
10
uses : snapshot-labs/actions/.github/workflows/lint.yml@main
8
11
secrets : inherit
12
+ with :
13
+ target : ${{ matrix.target }}
Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ on: [push]
4
4
5
5
jobs :
6
6
test :
7
+ strategy :
8
+ matrix :
9
+ target : ['22.6']
7
10
uses : snapshot-labs/actions/.github/workflows/test.yml@main
8
11
secrets : inherit
9
12
with :
10
13
mysql_database_name : hub_test
14
+ target : ${{ matrix.target }}
Original file line number Diff line number Diff line change 1
1
# Node version matching the version declared in the package.json
2
- FROM node:16 -slim
2
+ FROM node:22.6.0 -slim
3
3
4
4
# Update O.S.
5
5
RUN apt-get update && apt-get upgrade -y
Original file line number Diff line number Diff line change 20
20
"extends" : " @snapshot-labs"
21
21
},
22
22
"prettier" : " @snapshot-labs/prettier-config" ,
23
+ "engines" : {
24
+ "node" : " >=22.6"
25
+ },
23
26
"dependencies" : {
24
27
"@graphql-tools/schema" : " ^10.0.0" ,
25
28
"@snapshot-labs/keycard" : " ^0.5.1" ,
You can’t perform that action at this time.
0 commit comments