File tree 4 files changed +18
-2
lines changed
4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 567
567
" review"
568
568
]
569
569
},
570
+ {
571
+ "login" : " snowystinger" ,
572
+ "name" : " Robert Snow" ,
573
+ "avatar_url" : " https://avatars.githubusercontent.com/u/698229?v=4" ,
574
+ "profile" : " https://github.com/snowystinger" ,
575
+ "contributions" : [
576
+ " test"
577
+ ]
578
+ },
570
579
{
571
580
"login" : " chris110408" ,
572
581
"name" : " Chris Chen" ,
Original file line number Diff line number Diff line change 17
17
strategy :
18
18
matrix :
19
19
node : [12.13, 12, 14, 16]
20
+ react : [16.9.0, ^16, ^17]
20
21
runs-on : ubuntu-latest
21
22
steps :
22
23
- name : 🛑 Cancel Previous Runs
37
38
env :
38
39
HUSKY_SKIP_INSTALL : true
39
40
41
+ - name : Use React version
42
+ run : npm install --save-dev react@"${{ matrix.react }}" react-dom@"${{ matrix.react }}" react-test-renderer@"${{ matrix.react }}"
43
+
40
44
- name : ▶️ Run validate script
41
45
run : npm run validate
42
46
Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
246
246
<td align="center"><a href="https://matan.io"><img src="https://avatars.githubusercontent.com/u/12711091?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Matan Borenkraout</b></sub></a><br /><a href="#maintenance-MatanBobi" title="Maintenance">🚧</a></td>
247
247
<td align="center"><a href="https://github.com/andyrooger"><img src="https://avatars.githubusercontent.com/u/420834?v=4?s=100" width="100px;" alt=""/><br /><sub><b>andyrooger</b></sub></a><br /><a href="https://github.com/testing-library/react-hooks-testing-library/commits?author=andyrooger" title="Code">💻</a></td>
248
248
<td align="center"><a href="https://github.com/bdwain"><img src="https://avatars.githubusercontent.com/u/3982094?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Bryan Wain</b></sub></a><br /><a href="https://github.com/testing-library/react-hooks-testing-library/issues?q=author%3Abdwain" title="Bug reports">🐛</a> <a href="https://github.com/testing-library/react-hooks-testing-library/pulls?q=is%3Apr+reviewed-by%3Abdwain" title="Reviewed Pull Requests">👀</a></td>
249
+ <td align="center"><a href="https://github.com/snowystinger"><img src="https://avatars.githubusercontent.com/u/698229?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Robert Snow</b></sub></a><br /><a href="https://github.com/testing-library/react-hooks-testing-library/commits?author=snowystinger" title="Tests">⚠️</a></td>
249
250
<td align="center"><a href="https://github.com/chris110408"><img src="https://avatars.githubusercontent.com/u/10645051?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Chen</b></sub></a><br /><a href="https://github.com/testing-library/react-hooks-testing-library/commits?author=chris110408" title="Tests">⚠️</a></td>
250
251
</tr >
251
252
</table >
Original file line number Diff line number Diff line change 33
33
"scripts" : {
34
34
"setup" : " npm install && npm run validate -s" ,
35
35
"validate" : " kcd-scripts validate" ,
36
- "prepare" : " npm run build" ,
37
36
"build" : " kcd-scripts build --out-dir lib && npm run generate:submodules" ,
38
37
"generate:submodules" : " ts-node scripts/generate-submodules.ts" ,
39
38
"test" : " kcd-scripts test" ,
43
42
"coverage" : " codecov" ,
44
43
"docs:dev" : " docz dev" ,
45
44
"docs:build" : " docz build" ,
46
- "contributors:add" : " all-contributors add"
45
+ "contributors:add" : " all-contributors add" ,
46
+ "install:react-16-9" : " npm install --no-save react@16.9.0 react-dom@16.9.0 react-test-renderer@16.9.0" ,
47
+ "install:react-16" : " npm install --no-save react@^16 react-dom@^16 react-test-renderer@^16" ,
48
+ "install:react-17" : " npm install --no-save react@^17 react-dom@^17 react-test-renderer@^17"
47
49
},
48
50
"dependencies" : {
49
51
"@babel/runtime" : " ^7.12.5" ,
You can’t perform that action at this time.
0 commit comments