feat(deploy): GHCR deployment workflows with image-based promotion [AYG-73] #1846
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: Playwright Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| workflow_dispatch: | |
| inputs: | |
| debug_enabled: | |
| description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
| required: false | |
| default: 'false' | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| # Set job outputs to values from filter step | |
| outputs: | |
| changed: ${{ steps.filter.outputs.changed }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # For pull requests it's not necessary to checkout the code but for the main branch it is | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| changed: | |
| - backend/** | |
| - frontend/** | |
| - .env | |
| - compose*.yml | |
| - .github/workflows/playwright.yml | |
| test-playwright: | |
| needs: | |
| - changes | |
| # Opt-in: set repository variable PLAYWRIGHT_ENABLED=true to run E2E tests. | |
| # Skipped by default in template/bootstrap repos where Supabase is not configured. | |
| if: ${{ needs.changes.outputs.changed == 'true' && vars.PLAYWRIGHT_ENABLED == 'true' }} | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| shardIndex: [1, 2, 3, 4] | |
| shardTotal: [4] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Setup tmate session | |
| uses: mxschmitt/action-tmate@v3 | |
| if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }} | |
| with: | |
| limit-access-to-actor: true | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - run: uv sync | |
| working-directory: backend | |
| - run: bun install --frozen-lockfile | |
| working-directory: frontend | |
| - name: Generate API client | |
| run: bash scripts/generate-client.sh | |
| env: | |
| SUPABASE_URL: "http://localhost:54321" | |
| SUPABASE_SERVICE_KEY: "ci-dummy-key" | |
| CLERK_SECRET_KEY: "ci-dummy-key" | |
| ENVIRONMENT: "local" | |
| - run: docker compose build | |
| - run: docker compose down -v --remove-orphans | |
| - name: Run Playwright tests | |
| run: docker compose run --rm playwright bunx playwright test --fail-on-flaky-tests --trace=retain-on-failure --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} | |
| - run: docker compose down -v --remove-orphans | |
| - name: Upload blob report to GitHub Actions Artifacts | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: blob-report-${{ matrix.shardIndex }} | |
| path: frontend/blob-report | |
| include-hidden-files: true | |
| retention-days: 1 | |
| merge-playwright-reports: | |
| needs: | |
| - test-playwright | |
| - changes | |
| # Merge reports after playwright-tests, even if some shards have failed | |
| # Skip when test-playwright was skipped (template mode or no changes) | |
| if: ${{ !cancelled() && needs.test-playwright.result != 'skipped' && needs.changes.outputs.changed == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Download blob reports from GitHub Actions Artifacts | |
| uses: actions/download-artifact@v7 | |
| with: | |
| path: frontend/all-blob-reports | |
| pattern: blob-report-* | |
| merge-multiple: true | |
| - name: Merge into HTML Report | |
| run: bunx playwright merge-reports --reporter html ./all-blob-reports | |
| working-directory: frontend | |
| - name: Upload HTML report | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: html-report--attempt-${{ github.run_attempt }} | |
| path: frontend/playwright-report | |
| retention-days: 30 | |
| include-hidden-files: true | |
| # https://github.com/marketplace/actions/alls-green#why | |
| alls-green-playwright: # This job does nothing and is only used for the branch protection | |
| if: always() | |
| needs: | |
| - test-playwright | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} | |
| allowed-skips: test-playwright |