Skip to content

Commit 86beed6

Browse files
committed
drop support for node 16 too
1 parent 52adb24 commit 86beed6

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": "16"
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: [16, 18, 20]
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: 16
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 <[email protected]> (https://kentcdodds.com)",
2222
"license": "MIT",
2323
"engines": {
24-
"node": ">=16"
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 16.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)