File tree Expand file tree Collapse file tree 4 files changed +460
-710
lines changed Expand file tree Collapse file tree 4 files changed +460
-710
lines changed Original file line number Diff line number Diff line change 8
8
branches : ["main"]
9
9
10
10
jobs :
11
+ back-compat-react-17 :
12
+ runs-on : ubuntu-latest
13
+
14
+ strategy :
15
+ matrix :
16
+ node-version : [18.x]
17
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
18
+
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@v3
22
+
23
+ - name : Use Node.js ${{ matrix.node-version }}
24
+ uses : actions/setup-node@v3
25
+ with :
26
+ node-version : ${{ matrix.node-version }}
27
+ cache : " npm"
28
+
29
+ - name : Install
30
+ run : |
31
+ npm ci --ignore-scripts
32
+ npm i -D -E @testing-library/react@12 @types/react@17
33
+
34
+ - name : Build
35
+ run : npm run build --if-present
36
+
37
+ - name : Test
38
+ run : npm test
39
+
11
40
build :
12
41
runs-on : ubuntu-latest
13
42
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ - Widened React peer dependency range to include ^17
10
11
- Changed license to MIT
11
12
12
13
## [ 1.0.0] - 2023-01-15
You can’t perform that action at this time.
0 commit comments