Skip to content

Commit

Permalink
Merge pull request #2504 from miragejs/drop-node-14
Browse files Browse the repository at this point in the history
Drop support Node.js versions 14 and 17
  • Loading branch information
SergeAstapov committed Aug 18, 2023
2 parents a31d3f4 + 31290d6 commit a7e72d1
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand All @@ -61,7 +61,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"npm": false
},
"volta": {
"node": "14.19.1",
"node": "16.20.2",
"yarn": "1.22.18"
}
}
2 changes: 1 addition & 1 deletion packages/ember-cli-mirage-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
}
},
"engines": {
"node": "14.* || >= 16"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-cli-mirage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
}
},
"engines": {
"node": "14.* || >= 16"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion test-packages/01-basic-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"webpack": "^5.65.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion test-packages/02-app-that-excludes-mirage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"webpack": "^5.65.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit a7e72d1

Please sign in to comment.