Skip to content

Commit 038b699

Browse files
committed
chore: Drop support for node 14
1 parent 623ce49 commit 038b699

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 14.x
25+
node-version: 18.x
2626
cache: yarn
2727

2828
- name: Install Dependencies
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949
- uses: actions/setup-node@v3
5050
with:
51-
node-version: 14.x
51+
node-version: 18.x
5252
cache: yarn
5353

5454
- name: Install Dependencies
@@ -86,12 +86,12 @@ jobs:
8686
- name: Install Node
8787
uses: actions/setup-node@v3
8888
with:
89-
node-version: 14.x
89+
node-version: 18.x
9090
cache: yarn
9191

9292
- name: Install Dependencies
9393
run: until yarn install --frozen-lockfile; do echo "Retrying yarn"; done
9494

9595
- name: Run Tests
9696
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
97-
working-directory: test-app
97+
working-directory: test-app

test-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"webpack": "^5.75.0"
7676
},
7777
"engines": {
78-
"node": "14.* || 16.* || >= 18"
78+
"node": "16.* || 18.* || >= 20"
7979
},
8080
"ember": {
8181
"edition": "octane"

0 commit comments

Comments
 (0)