File tree 5 files changed +543
-35
lines changed
5 files changed +543
-35
lines changed Original file line number Diff line number Diff line change 4
4
continuous-integration :
5
5
name : Continuous Integration
6
6
runs-on : ubuntu-latest
7
+ strategy :
8
+ matrix :
9
+ version : [20, 22]
7
10
steps :
8
11
- uses : actions/checkout@v4
9
12
- uses : pnpm/action-setup@v4
10
13
- uses : actions/setup-node@v4
11
14
with :
12
- node-version : ' 22 '
15
+ node-version : ${{ matrix.version }}
13
16
cache : ' pnpm'
14
17
- run : pnpm install
15
18
- run : pnpm run test
19
+ # FIXME: To be reactivated
16
20
# - run: pnpm run lint
17
21
- run : pnpm run tsc --noEmit
22
+ # FIXME: To be reactivated (or not)
18
23
# - run: pnpm run smoke cjs 15.6.2
19
24
# - run: pnpm run smoke esm 15.6.2
20
25
# - run: pnpm run smoke cjs 16.7.0
Original file line number Diff line number Diff line change 5
5
src /
6
6
tests /
7
7
8
- .babelrc
9
8
.eslintignore
10
9
.eslintrc.js
11
- .travis.yml
12
10
.prettier
13
11
.prettierignore
14
12
commitlint.config.js
15
13
release.sh
16
14
renovate.json
17
- rollup.config.js
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
33
"react-is" : " ^19.0.0"
34
34
},
35
35
"devDependencies" : {
36
+ "@commitlint/cli" : " ^19.6.1" ,
37
+ "@commitlint/config-angular" : " ^19.7.0" ,
36
38
"@testing-library/dom" : " ^10.4.0" ,
37
39
"@testing-library/jest-dom" : " ^6.6.3" ,
38
40
"@testing-library/react" : " ^16.1.0" ,
You can’t perform that action at this time.
0 commit comments