chore(deps): update dependency happy-css-modules to v5 #2357
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build | |
| run: pnpm run build | |
| - name: Code check | |
| run: pnpm run lint && pnpm run format:check | |
| - name: Clone backend | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: "pulsate-dev/pulsate" | |
| path: "backend/" | |
| - name: Build backend | |
| working-directory: "./backend" | |
| run: | | |
| pnpm install --frozen-lockfile | |
| pnpm run build | |
| touch .env | |
| - name: Run E2E test | |
| env: | |
| CLOUDFLARE_ENV: ci | |
| run: | | |
| set -e | |
| pnpm playwright install chromium --only-shell | |
| cd backend && pnpm start & id=$! | |
| pnpm e2e | |
| kill "$id" |