Skip to content

Commit

Permalink
feat: Drop support for node 10 (#930)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node 10 is no longer supported. It reached its end-of-life on 30.04.2021.
  • Loading branch information
eps1lon committed Jun 12, 2021
1 parent c1878a9 commit 42dad78
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .codesandbox/ci.json
@@ -1,3 +1,4 @@
{
"sandboxes": ["new", "github/kentcdodds/react-testing-library-examples"]
"sandboxes": ["new", "github/kentcdodds/react-testing-library-examples"],
"node": "12"
}
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
if: ${{ !contains(github.head_ref, 'all-contributors') }}
strategy:
matrix:
node: [10.13, 12, 14, 16]
node: [12, 14, 16]
react: [latest, next, experimental]
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"types": "types/index.d.ts",
"module": "dist/@testing-library/react.esm.js",
"engines": {
"node": ">=10"
"node": ">=12"
},
"scripts": {
"prebuild": "rimraf dist",
Expand Down

0 comments on commit 42dad78

Please sign in to comment.