name: E2E on: push: branches: [master, main] pull_request: concurrency: group: e2e-${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: playwright: name: Playwright e2e runs-on: ubuntu-latest timeout-minutes: 20 steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: 9 - uses: actions/setup-node@v4 with: node-version: 22 cache: pnpm cache-dependency-path: pnpm-lock.yaml - name: Install dependencies run: pnpm install --frozen-lockfile - name: Install Playwright browsers run: pnpm exec playwright install --with-deps chromium env: PLAYWRIGHT_BROWSERS_PATH: "0" - name: Run e2e tests run: pnpm run e2e env: CI: true PLAYWRIGHT_BROWSERS_PATH: "0" - name: Upload Playwright report if: failure() uses: actions/upload-artifact@v4 with: name: playwright-report path: playwright-report/ retention-days: 7