Add minimal MCP tab control popup #30
Workflow file for this run
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, master ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/workflows/jan-browser-docs.yml' | |
| pull_request: | |
| branches: [ main, master ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/workflows/jan-browser-docs.yml' | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Build extension | |
| run: bun run build | |
| - name: Run unit tests (Vitest) | |
| run: bun run test:run | |
| - name: Install Playwright Browsers | |
| run: npx playwright install --with-deps | |
| - name: Run Playwright E2E | |
| run: bun run test:e2e | |