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
5 changes: 5 additions & 0 deletions .github/actions/setup-playwright/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ runs:
run: bun install --frozen-lockfile
shell: bash

# Run from apps/host so bunx resolves the workspace-pinned playwright
# (@playwright/test in apps/host) instead of fetching the latest from the
# registry. A version mismatch installs the wrong browser build and the
# tests fail at launch with "Executable doesn't exist".
- name: Install Playwright browsers
working-directory: apps/host
run: bunx --bun playwright install --with-deps chromium
shell: bash
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
bun-version: "1.3.13"

- name: Build
env:
# Required build-time config (see packages/config/src/network.ts).
# Without it the host shell throws on boot and never mounts the
# protocol/app iframes, so every test times out. deploy.yml supplies
# this from repo vars; the test build needs its own value.
VITE_NETWORKS: paseo-next-v2,previewnet
run: bunx --bun turbo run build

- name: Run functional tests
Expand Down Expand Up @@ -105,6 +111,12 @@ jobs:
bun-version: "1.3.13"

- name: Build
env:
# Required build-time config (see packages/config/src/network.ts).
# Without it the host shell throws on boot and never mounts the
# protocol/app iframes, so every test times out. deploy.yml supplies
# this from repo vars; the test build needs its own value.
VITE_NETWORKS: paseo-next-v2,previewnet
run: bunx --bun turbo run build

# Exit code 99 from playwright = Nova bot unavailable (signal raised
Expand Down
55 changes: 28 additions & 27 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"smoldot": "3.2.0"
},
"overrides": {
"smoldot": "3.2.0"
"smoldot": "3.2.0",
"esbuild": "^0.28.1"
}
}
Loading