Skip to content

Commit 9b7a1e2

Browse files
committedJan 31, 2023
feat: Drop support for Node.js 12.x (#1169)
BREAKING CHANGE: Minimum supported Node.js version is now 14.x
1 parent c43512a commit 9b7a1e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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": ["new", "github/kentcdodds/react-testing-library-examples"],
4-
"node": "12"
4+
"node": "14"
55
}

‎.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
node: [12, 14, 16, 18]
27+
node: [14, 16, 18]
2828
react: [latest, next, experimental]
2929
runs-on: ubuntu-latest
3030
steps:

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "types/index.d.ts",
77
"module": "dist/@testing-library/react.esm.js",
88
"engines": {
9-
"node": ">=12"
9+
"node": ">=14"
1010
},
1111
"scripts": {
1212
"prebuild": "rimraf dist",

0 commit comments

Comments
 (0)
Please sign in to comment.