1515 steps :
1616 - uses : actions/checkout@v1
1717 - uses : actions/setup-node@v1
18+ with :
19+ node-version : 14
1820
1921 - run : yarn install
2022 - run : yarn lint
2628 steps :
2729 - uses : actions/checkout@v1
2830 - uses : actions/setup-node@v1
31+ with :
32+ node-version : 14
2933
3034 - run : yarn install
3135 - run : yarn node-test-with-coverage
3741 steps :
3842 - uses : actions/checkout@v1
3943 - uses : actions/setup-node@v1
44+ with :
45+ node-version : 14
4046
4147 - run : yarn install --no-lockfile
4248 - run : yarn node-test
@@ -113,6 +119,8 @@ jobs:
113119 steps :
114120 - uses : actions/checkout@v1
115121 - uses : actions/setup-node@v1
122+ with :
123+ node-version : 14
116124
117125 - name : install deps
118126 run : yarn install
@@ -128,7 +136,7 @@ jobs:
128136 npm-smoke-tests :
129137 strategy :
130138 matrix :
131- node : ['10 ', '12 ', '14 ']
139+ node : ['14 ', '16 ', '18 ']
132140
133141 name : Smoke Tests (Node v${{ matrix.node }} with npm)
134142 runs-on : ubuntu-latest
@@ -154,7 +162,7 @@ jobs:
154162 yarn-smoke-tests :
155163 strategy :
156164 matrix :
157- node : ['10 ', '12 ', '14 ']
165+ node : ['14 ', '16 ', '18 ']
158166
159167 name : Smoke Tests (Node v${{ matrix.node }} with yarn)
160168 runs-on : ubuntu-latest
@@ -189,7 +197,7 @@ jobs:
189197 - uses : actions/checkout@v1
190198 - uses : actions/setup-node@v1
191199 with :
192- node-version : 12
200+ node-version : 14
193201
194202 - name : install deps
195203 run : yarn install
0 commit comments