Skip to content

Commit b3de3b0

Browse files
authored
feat: Add support for node 14 and 15 (#14)
1 parent c36781b commit b3de3b0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
jobs:
1313
test:
1414
runs-on: windows-latest
15+
strategy:
16+
matrix:
17+
node: [12, 14, 15]
1518
env:
1619
SRTL_DEV: true
1720

@@ -20,7 +23,7 @@ jobs:
2023
- name: Use node@12
2124
uses: actions/setup-node@v1
2225
with:
23-
node-version: "12.x"
26+
node-version: ${{ matrix.node }}
2427
- uses: microsoft/playwright-github-action@v1
2528
- run: yarn
2629
- name: "Lockfile changes from running `yarn` committed?"

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"
16+
"node": "^12.18.4 || ^14.0.0 || ^15.0.0"
1717
},
1818
"scripts": {
1919
"install": "node install"

0 commit comments

Comments
 (0)