Skip to content

Commit b4c0a14

Browse files
committed
Fix Github Actions
1 parent fe44a8d commit b4c0a14

File tree

5 files changed

+543
-35
lines changed

5 files changed

+543
-35
lines changed

Diff for: .github/workflows/continuous-integration.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@ 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
22+
# FIXME: To be reactivated (or not)
1823
# - run: pnpm run smoke cjs 15.6.2
1924
# - run: pnpm run smoke esm 15.6.2
2025
# - run: pnpm run smoke cjs 16.7.0

Diff for: .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

Diff for: index.d.ts

-27
This file was deleted.

Diff for: 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)