Skip to content
Merged
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
40 changes: 20 additions & 20 deletions .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-angular
- name: Integration tests
run: pnpm test:integration
Expand All @@ -31,10 +31,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-remix
- name: E2E tests
run: pnpm test:e2e
Expand All @@ -46,10 +46,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-svelte
- name: E2E tests
run: pnpm test:e2e
Expand All @@ -61,10 +61,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-vue
- name: Integration tests
run: pnpm test:integration
Expand All @@ -79,10 +79,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-jest
- run: pnpm test --filter with-jest

Expand All @@ -92,10 +92,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-jest-jsdom
- run: pnpm test --filter with-jest-jsdom

Expand All @@ -105,10 +105,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-vitest
- run: pnpm test --filter with-vitest

Expand All @@ -118,10 +118,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-vitest-cjs
- run: pnpm test --filter with-vitest-cjs

Expand All @@ -131,10 +131,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-playwright
- run: pnpm test --filter with-playwright

Expand All @@ -144,9 +144,9 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 8.15
version: 9.15.3
- run: pnpm install --filter with-karma
- run: pnpm test --filter with-karma
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v20
2 changes: 1 addition & 1 deletion examples/with-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"jest-environment-jsdom": "^29.5.0",
"jest-fixed-jsdom": "^0.0.9",
"jest-preset-angular": "13.0.1",
"msw": "2.6.4",
"msw": "2.11.2",
"start-server-and-test": "^2.0.0",
"tslib": "2.3.0",
"typescript": "~4.9"
Expand Down
Loading