Extract WebChannel constructor wiring factory #225
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| web-build: | |
| name: Build web UI + frontend regression checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Check for silent swallow regressions | |
| run: bun run check:silent-swallows | |
| - name: Check structured logging guardrails | |
| run: bun run check:structured-logging | |
| - name: Build web bundles and run web regression tests | |
| run: make build-web |