Skip to content

Commit 710739c

Browse files
committed
Bump node to supported versions
See [Node Releases](https://github.com/nodejs/release#release-schedule)
1 parent 61fed6b commit 710739c

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
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
@@ -26,6 +28,8 @@ jobs:
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
@@ -37,6 +41,8 @@ jobs:
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"tmp-sync": "^1.1.0"
6161
},
6262
"engines": {
63-
"node": "10.* || 12.* || >= 14.*"
63+
"node": "14.* || 16.* || >= 18.*"
6464
},
6565
"publishConfig": {
6666
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)