Skip to content

Commit

Permalink
Merge pull request #785 from mainmatter/drop-node-14
Browse files Browse the repository at this point in the history
chore: Drop node - set minimal node version to >=16
  • Loading branch information
BobrImperator authored Apr 14, 2023
2 parents b319181 + 62be08d commit 190e12b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- run: yarn install --frozen-lockfile
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- run: yarn install
Expand All @@ -96,7 +96,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
cache: yarn

- run: yarn install --no-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
registry-url: 'https://registry.npmjs.org'

- run: npm publish
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"volta": {
"node": "16.20.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/ember-cookies/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"rollup": "^2.74.1"
},
"engines": {
"node": ">= 14.*"
"node": ">= 16.*"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion packages/test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"crypto"
],
"engines": {
"node": ">= 14.*"
"node": ">= 16.*"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit 190e12b

Please sign in to comment.