We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36781b commit b3de3b0Copy full SHA for b3de3b0
.github/workflows/ci.yml
@@ -12,6 +12,9 @@ on:
12
jobs:
13
test:
14
runs-on: windows-latest
15
+ strategy:
16
+ matrix:
17
+ node: [12, 14, 15]
18
env:
19
SRTL_DEV: true
20
@@ -20,7 +23,7 @@ jobs:
23
- name: Use node@12
21
24
uses: actions/setup-node@v1
22
25
with:
- node-version: "12.x"
26
+ node-version: ${{ matrix.node }}
27
- uses: microsoft/playwright-github-action@v1
28
- run: yarn
29
- name: "Lockfile changes from running `yarn` committed?"
src/package.json
@@ -13,7 +13,7 @@
"proper-lockfile": "^4.1.1"
},
"engines": {
- "node": "^12.18.4"
+ "node": "^12.18.4 || ^14.0.0 || ^15.0.0"
"scripts": {
"install": "node install"
0 commit comments