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 1ed2e1c commit eed33d7Copy full SHA for eed33d7
.github/workflows/ci.yml
@@ -9,9 +9,10 @@ jobs:
9
strategy:
10
matrix:
11
node:
12
- - 18
13
- - 20
14
- react: [16, 17, 18]
+ - lts/-1
+ - lts/*
+ #- latest
15
+ react: [18]
16
17
name: build (${{ matrix.node }} w/ React ${{ matrix.react }}
18
@@ -26,11 +27,6 @@ jobs:
26
27
- name: Install dependencies
28
run: npm ci
29
- - name: Install Compatible @testing-library/react
30
- if: matrix.react == '16' || matrix.react == '17'
31
- run: |
32
- npm install @testing-library/react@12
33
-
34
- name: Install React v${{ matrix.react }}
35
run: npm i react@${{ matrix.react }} react-dom@${{ matrix.react }}
36
0 commit comments