Skip to content

Commit

Permalink
Drop Node.js 14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov authored and mansona committed Jun 28, 2023
1 parent c590272 commit 7d737aa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16

- run: yarn install
- run: yarn lint
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16

- run: yarn install
- run: yarn node-test-with-coverage
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16

- run: yarn install --no-lockfile
- run: yarn node-test
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16

- name: install deps
run: yarn install
Expand All @@ -139,7 +139,7 @@ jobs:
npm-smoke-tests:
strategy:
matrix:
node: ['14', '16', '18']
node: ['16', '18']

name: Smoke Tests (Node v${{ matrix.node }} with npm)
runs-on: ubuntu-latest
Expand All @@ -165,7 +165,7 @@ jobs:
yarn-smoke-tests:
strategy:
matrix:
node: ['14', '16', '18']
node: ['16', '18']

name: Smoke Tests (Node v${{ matrix.node }} with yarn)
runs-on: ubuntu-latest
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16

- name: install deps
run: yarn install
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version: 16

- name: auto-dist-tag
run: npx auto-dist-tag@1 --write
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"tmp-sync": "^1.1.0"
},
"engines": {
"node": "14.* || 16.* || >= 18.*"
"node": "16.* || >= 18.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion smoke-test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"ember-source": "^3.28.0 || ^4.0.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit 7d737aa

Please sign in to comment.