Skip to content

Commit

Permalink
feat: Add support for node 16 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed May 24, 2021
1 parent 34581fa commit 794e233
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/friendly-plums-vanish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"screen-reader-testing-library": patch
---

Add support for node 16

Previously installs using node 16 would fail the engines check.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node: [12, 14, 15]
node: [12, 14, 15, 16]
env:
SRTL_DEV: true

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.18.4
v16.2.0
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"proper-lockfile": "^4.1.1"
},
"engines": {
"node": "^12.18.4 || ^14.0.0 || ^15.0.0"
"node": "^12.18.4 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"scripts": {
"install": "node install"
Expand Down

0 comments on commit 794e233

Please sign in to comment.