Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Node v14 and add support for Node v20 #493

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 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@v3
- uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: 16
- 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: ['14', '16', '18']
node: [16, 18, 20]

steps:
- uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu', 'windows']
node: ['14', '16', '18']
node: [16, 18, 20]

steps:
- uses: actions/checkout@v3
Expand All @@ -73,7 +73,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: 16
- name: install dependencies
run: yarn install --no-lockfile --ignore-engines
- name: test
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16
registry-url: 'https://registry.npmjs.org'

- 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 @@ -112,7 +112,7 @@
"webpack": "^5.75.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || 18.* || >= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down