the generalized tree loses its mock buttons and its record toggle #409
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: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.14" | |
| - run: bun install --frozen-lockfile | |
| - run: bun test | |
| - run: bunx tsc --noEmit | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.14" | |
| - run: bun install --frozen-lockfile | |
| # Install the Chromium binary; the Playwright webServer builds the SPA and | |
| # serves it (plus the /api surface) through the real Hono server. | |
| - run: bunx playwright install --with-deps chromium | |
| - run: bun run test:e2e |