Start MP3 ambience at the dragged setup volume #26
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: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: '24.14.1' | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2.2.0 | |
| with: | |
| bun-version: '1.3.13' | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run typecheck, smoke tests, and production build | |
| run: bun run validate | |
| - name: Install Playwright Chromium | |
| run: PLAYWRIGHT_BROWSERS_PATH=.playwright-browsers npx playwright install --with-deps chromium | |
| - name: Run browser E2E tests | |
| run: bun run e2e:test |