Skip to content

Commit 794e233

Browse files
authored
feat: Add support for node 16 (#23)
1 parent 34581fa commit 794e233

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.changeset/friendly-plums-vanish.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"screen-reader-testing-library": patch
3+
---
4+
5+
Add support for node 16
6+
7+
Previously installs using node 16 would fail the engines check.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: windows-latest
1515
strategy:
1616
matrix:
17-
node: [12, 14, 15]
17+
node: [12, 14, 15, 16]
1818
env:
1919
SRTL_DEV: true
2020

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v12.18.4
1+
v16.2.0

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"proper-lockfile": "^4.1.1"
1414
},
1515
"engines": {
16-
"node": "^12.18.4 || ^14.0.0 || ^15.0.0"
16+
"node": "^12.18.4 || ^14.0.0 || ^15.0.0 || ^16.0.0"
1717
},
1818
"scripts": {
1919
"install": "node install"

0 commit comments

Comments
 (0)