Skip to content

Commit

Permalink
Drop support for Node < v14 and add support for Node v16 and v18
Browse files Browse the repository at this point in the history
  • Loading branch information
bertdeblock committed Oct 1, 2022
1 parent f7c8e88 commit 40696b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: install dependencies
run: yarn install --frozen-lockfile --ignore-engines
- name: lint
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu', 'windows', 'macOS']
node: ['6', '8', '10', '12', '14']
node: ['14', '16', '18']
exclude:
# excludes node 14 on macOS, this is because
# ember-cli (until ~ 3.12) calls
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu', 'windows']
node: ['12', '14']
node: ['14', '16', '18']
exclude:
# excludes node 14 on macOS, this is because
# ember-cli (until ~ 3.12) calls
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: install dependencies
run: yarn install --no-lockfile --ignore-engines
- name: test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"resolve": "^1.8.1"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
"node": "14.* || 16.* || >= 18"
},
"resolutions": {
"**/engine.io": "~3.3.0"
Expand Down

0 comments on commit 40696b6

Please sign in to comment.