File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 26
26
- uses : actions/checkout@v2
27
27
- uses : actions/setup-node@v2
28
28
with :
29
- node-version : ' 12 '
29
+ node-version : ' 14 '
30
30
# install to create local package-lock.json but don't cache the files
31
31
# also: no audit for dev dependencies
32
32
- run : npm i --package-lock-only && npm audit --production
40
40
needs : [audit]
41
41
strategy :
42
42
matrix :
43
- node : [12, 14, 16]
43
+ node : [14, 16, 18 ]
44
44
steps :
45
45
- name : Checkout ${{ matrix.node }}
46
46
uses : actions/checkout@v2
81
81
needs : [unittest]
82
82
strategy :
83
83
matrix :
84
- node : [12, 14 ] # TODO get running for node 16
84
+ node : [14, 16, 18 ] # TODO get running for node 16
85
85
steps :
86
86
# checkout this repo
87
87
- name : Checkout ${{ matrix.node }}
@@ -125,7 +125,7 @@ jobs:
125
125
- uses : actions/checkout@v2
126
126
- uses : actions/setup-node@v2
127
127
with :
128
- node-version : 12
128
+ node-version : 14
129
129
registry-url : https://registry.npmjs.org/
130
130
- run : npm i
131
131
- run : npm publish --dry-run
@@ -143,7 +143,7 @@ jobs:
143
143
- uses : actions/setup-node@v2
144
144
with :
145
145
# we always publish targeting the lowest supported node version
146
- node-version : 12
146
+ node-version : 14
147
147
registry-url : $registry-url(npm)
148
148
- run : npm i
149
149
- run : npm publish --dry-run
Original file line number Diff line number Diff line change 18
18
runs-on : ubuntu-latest
19
19
strategy :
20
20
matrix :
21
- node : [12, 14, 16]
21
+ node : [14, 16, 18 ]
22
22
steps :
23
23
- name : Checkout ${{ matrix.node }}
24
24
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 39
39
},
40
40
"license" : " MIT" ,
41
41
"engines" : {
42
- "node" : " >=12 .0.0"
42
+ "node" : " >=14 .0.0"
43
43
},
44
44
"scripts" : {
45
45
"pretest" : " ./node_modules/.bin/eslint lib test index.js" ,
You can’t perform that action at this time.
0 commit comments