File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,18 @@ jobs:
10
10
test :
11
11
runs-on : ubuntu-latest
12
12
13
+ strategy :
14
+ fail-fast : false
15
+ matrix :
16
+ node-version : [ 18.x, 20.x ]
17
+
18
+ name : Test ${{ matrix.node-version }}
19
+
13
20
steps :
14
21
- uses : actions/checkout@v4
15
22
- uses : actions/setup-node@v4
16
23
with :
17
- node-version : 18
24
+ node-version : ${{ matrix.node-version }}
18
25
cache : yarn
19
26
- run : yarn install --frozen-lockfile
20
27
- run : yarn tsc
Original file line number Diff line number Diff line change 44
44
},
45
45
"peerDependencies" : {
46
46
"react" : " ^16.13.1 || ^17.0.0 || ^18.0.0" ,
47
- "react-dom" : " ^16.13.1 || ^17.0.0 || ^18.0.0"
47
+ "react-dom" : " ^16.13.1 || ^17.0.0 || ^18.0.0" ,
48
+ "react-router-dom" : " ^6.3.0"
48
49
},
49
50
"devDependencies" : {
50
51
"@backstage/cli" : " ^0.28.0" ,
You can’t perform that action at this time.
0 commit comments