Skip to content

Commit c2cb1a8

Browse files
committed
Fix Github Actions
1 parent 4859302 commit c2cb1a8

File tree

5 files changed

+542
-35
lines changed

5 files changed

+542
-35
lines changed

.github/workflows/continuous-integration.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@ jobs:
44
continuous-integration:
55
name: Continuous Integration
66
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
version: [20, 22]
710
steps:
811
- uses: actions/checkout@v4
912
- uses: pnpm/action-setup@v4
1013
- uses: actions/setup-node@v4
1114
with:
12-
node-version: '22'
15+
node-version: ${{ matrix.version }}
1316
cache: 'pnpm'
1417
- run: pnpm install
1518
- run: pnpm run test
19+
# FIXME: To be reactivated
1620
# - run: pnpm run lint
1721
- run: pnpm run tsc --noEmit
1822
# - run: pnpm run smoke cjs 19.0.0

.npmignore

-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@
55
src/
66
tests/
77

8-
.babelrc
98
.eslintignore
109
.eslintrc.js
11-
.travis.yml
1210
.prettier
1311
.prettierignore
1412
commitlint.config.js
1513
release.sh
1614
renovate.json
17-
rollup.config.js

index.d.ts

-27
This file was deleted.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
"react-is": "^19.0.0"
3434
},
3535
"devDependencies": {
36+
"@commitlint/cli": "^19.6.1",
37+
"@commitlint/config-angular": "^19.7.0",
3638
"@testing-library/dom": "^10.4.0",
3739
"@testing-library/jest-dom": "^6.6.3",
3840
"@testing-library/react": "^16.1.0",

0 commit comments

Comments
 (0)