Skip to content

Commit

Permalink
run websocket integration tests on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito committed Apr 7, 2024
1 parent dcbdd93 commit 05eb359
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-angular
- name: Integration tests
run: pnpm test:integration
Expand All @@ -34,7 +34,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-remix
- name: E2E tests
run: pnpm test:e2e
Expand All @@ -49,7 +49,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-svelte
- name: E2E tests
run: pnpm test:e2e
Expand All @@ -64,7 +64,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-vue
- name: Integration tests
run: pnpm test:integration
Expand All @@ -82,7 +82,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-jest
- run: pnpm test --filter with-jest

Expand All @@ -95,7 +95,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-jest-jsdom
- run: pnpm test --filter with-jest-jsdom

Expand All @@ -108,7 +108,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-vitest
- run: pnpm test --filter with-vitest

Expand All @@ -121,7 +121,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-vitest-cjs
- run: pnpm test --filter with-vitest-cjs

Expand All @@ -134,7 +134,7 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-playwright
- run: pnpm test --filter with-playwright

Expand All @@ -147,6 +147,20 @@ jobs:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7.12.1
version: 8.15
- run: pnpm install --filter with-karma
- run: pnpm test --filter with-karma

# WebSocket examples.
websocket:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8.15
- run: pnpm install --filter with-websocket
- run: pnpm test --filter with-websocket

0 comments on commit 05eb359

Please sign in to comment.