Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
java-version: 17

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Build app
working-directory: example/android
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
restore-keys: build-ios-node-modules-

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

# v4.3.0
- name: Restore Pods from cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Build app
working-directory: WebExample
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Typecheck library
run: npm run typecheck -- --project tsconfig.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Verify there's no Prettier diff
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install node_modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Install browsers
run: npx playwright install --with-deps
Expand Down
2 changes: 1 addition & 1 deletion WebExample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.7",
"@types/react": "^19.2.0",
"typescript": "~5.3.3"
"typescript": "^7.0.2"
},
"private": true
}
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "19.2.3",
"typescript": "^5.8.3"
"typescript": "^7.0.2"
},
"engines": {
"node": ">=18"
Expand Down
Loading
Loading