Skip to content

Commit 452097b

Browse files
authoredSep 10, 2023
feat: Drop support for Node.js 14.x and Node.js 16.x and add support for Node 20.x (#1255)
* feat: Drop support for Node.js 14.x and add support for Node 20.x BREAKING CHANGE: Minimum supported Node.js version is now 14.x * update node version in codesandbox * drop support for node 16 too
1 parent 365d555 commit 452097b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.codesandbox/ci.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"installCommand": "install:csb",
33
"sandboxes": ["github/kentcdodds/react-testing-library-examples"],
4-
"node": "14"
4+
"node": "18"
55
}

‎.github/workflows/validate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Otherwise we would not know if the problem is tied to the Node.js version
3030
fail-fast: false
3131
matrix:
32-
node: [14, 16, 18]
32+
node: [18, 20]
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: ⬇️ Checkout repo
@@ -78,7 +78,7 @@ jobs:
7878
- name: ⎔ Setup node
7979
uses: actions/setup-node@v3
8080
with:
81-
node-version: 14
81+
node-version: 18
8282

8383
- name: 📥 Download deps
8484
uses: bahmutov/npm-install@v1

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
2222
"license": "MIT",
2323
"engines": {
24-
"node": ">=14"
24+
"node": ">=18"
2525
},
2626
"browserslist": [
2727
"and_chr 103",
@@ -40,7 +40,7 @@
4040
"safari 15.5",
4141
"samsung 17.0",
4242
"samsung 16.0",
43-
"node 14.0"
43+
"node 18.0"
4444
],
4545
"scripts": {
4646
"build": "kcd-scripts build --no-ts-defs --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --no-ts-defs --bundle --no-clean",

0 commit comments

Comments
 (0)
Please sign in to comment.