Skip to content

Commit

Permalink
Merge pull request #493 from babel/update-node-support
Browse files Browse the repository at this point in the history
Drop support for Node v14 and add support for Node v20
  • Loading branch information
kategengler authored Aug 17, 2023
2 parents ea58db8 + c5dfa5e commit f5fa387
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit f5fa387

Please sign in to comment.