Skip to content

Commit cc6146a

Browse files
SergeAstapovkategengler
authored andcommitted
Drop Node.js 14 support
1 parent c92dc69 commit cc6146a

4 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v1
2222
- uses: actions/setup-node@v1
2323
with:
24-
node-version: 14
24+
node-version: 16
2525

2626
- run: yarn install
2727
- run: yarn lint
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Node
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version: 14.x
38+
node-version: 16.x
3939
cache: yarn
4040
- name: Install Dependencies
4141
run: yarn install --frozen-lockfile
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v3
5252
- uses: actions/setup-node@v3
5353
with:
54-
node-version: 14.x
54+
node-version: 16.x
5555
cache: yarn
5656
- name: Install Dependencies
5757
run: yarn install --no-lockfile
@@ -135,7 +135,7 @@ jobs:
135135
- uses: actions/checkout@v1
136136
- uses: actions/setup-node@v1
137137
with:
138-
node-version: 14
138+
node-version: 16
139139

140140
- name: install deps
141141
run: yarn install
@@ -151,7 +151,7 @@ jobs:
151151
npm-smoke-tests:
152152
strategy:
153153
matrix:
154-
node: ['14', '16', '18']
154+
node: ['16', '18']
155155

156156
name: Smoke Tests (Node v${{ matrix.node }} with npm)
157157
runs-on: ubuntu-latest
@@ -178,7 +178,7 @@ jobs:
178178
yarn-smoke-tests:
179179
strategy:
180180
matrix:
181-
node: ['14', '16', '18']
181+
node: ['16', '18']
182182

183183
name: Smoke Tests (Node v${{ matrix.node }} with yarn)
184184
runs-on: ubuntu-latest
@@ -215,7 +215,7 @@ jobs:
215215
- uses: actions/checkout@v1
216216
- uses: actions/setup-node@v1
217217
with:
218-
node-version: 14
218+
node-version: 16
219219

220220
- name: install deps
221221
run: yarn install

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v1
1616
with:
1717
registry-url: 'https://registry.npmjs.org'
18+
node-version: 16
1819

1920
- name: auto-dist-tag
2021
run: npx auto-dist-tag@1 --write

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": "14.* || 16.* || >= 18.*"
63+
"node": "16.* || >= 18.*"
6464
},
6565
"publishConfig": {
6666
"registry": "https://registry.npmjs.org"

smoke-test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"ember-source": "^3.28.0 || ^4.0.0"
7171
},
7272
"engines": {
73-
"node": "14.* || 16.* || >= 18"
73+
"node": "16.* || >= 18"
7474
},
7575
"ember": {
7676
"edition": "octane"

0 commit comments

Comments
 (0)