ci: lint the workflow files so an uncompilable one cannot ship (#1122) #2449
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: Test Suite (Unit + E2E) | |
| on: | |
| push: | |
| branches: [main, develop, '0*'] | |
| pull_request: | |
| branches: [main, develop] | |
| workflow_call: # Allow this workflow to be called by other workflows | |
| # Nightly browser-E2E schedule: runs the full Playwright suite (all browsers, | |
| # all specs) against the current Phase-3+ UI. Rewritten in #684. | |
| schedule: | |
| - cron: '0 2 * * *' | |
| env: | |
| PYTHON_VERSION: '3.11' | |
| # ESLint 10's deps require Node ^20.19 || ^22.13 || >=24; pin the minimum | |
| # explicitly so a floating '20' tag can't resolve to an older 20.x patch. | |
| NODE_VERSION: '20.19' | |
| jobs: | |
| # ============================================ | |
| # Code Quality Checks (Run First - Fast Fail) | |
| # ============================================ | |
| code-quality: | |
| name: Code Quality (Lint + Type Check) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| with: | |
| enable-cache: true | |
| - name: Create virtual environment | |
| run: uv venv | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Run ruff (linting) | |
| run: uv run ruff check . | |
| - name: Run mypy (type checking) | |
| run: uv run mypy codeframe/ | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'npm' | |
| cache-dependency-path: 'web-ui/package-lock.json' | |
| - name: Install frontend dependencies | |
| working-directory: web-ui | |
| run: npm ci | |
| - name: Run frontend lint (eslint) | |
| working-directory: web-ui | |
| run: npm run lint | |
| # ============================================ | |
| # Workflow Lint — a workflow that will not compile ships silently (#1122) | |
| # ============================================ | |
| # An uncompilable workflow does not fail like a normal job: the run has zero | |
| # jobs and no logs, `gh run view --log-failed` says "log not found", and it | |
| # ignores its own trigger filters. deploy.yml failed that way on every push to | |
| # main for a week and read as background noise. actionlint catches it in under | |
| # a second. Deliberately NOT paths-filtered: a skipped required check is the | |
| # same silence this job exists to remove. | |
| workflow-lint: | |
| name: Workflow Lint (actionlint) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| # Pinned release + checksum rather than a floating action: this job's | |
| # whole job is to stop unverifiable CI config from landing. | |
| - name: Run actionlint | |
| env: | |
| ACTIONLINT_VERSION: "1.7.7" | |
| ACTIONLINT_SHA256: "023070a287cd8cccd71515fedc843f1985bf96c436b7effaecce67290e7e0757" | |
| run: | | |
| set -euo pipefail | |
| curl -sSLf -o actionlint.tar.gz \ | |
| "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" | |
| echo "${ACTIONLINT_SHA256} actionlint.tar.gz" | sha256sum -c - | |
| tar -xzf actionlint.tar.gz actionlint | |
| ./actionlint -color | |
| # ============================================ | |
| # Static Analysis - Check for Hardcoded URLs | |
| # ============================================ | |
| check-hardcoded-urls: | |
| name: Check for Hardcoded URLs | |
| runs-on: ubuntu-latest | |
| needs: code-quality | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Check for hardcoded localhost URLs in frontend | |
| run: | | |
| echo "🔍 Checking for hardcoded localhost URLs..." | |
| # Skip if web-ui/src doesn't exist (v2 CLI-first mode) | |
| if [ ! -d "web-ui/src" ]; then | |
| echo "⏭️ Skipping: web-ui/src not found (v2 CLI-first mode)" | |
| exit 0 | |
| fi | |
| # Check for hardcoded localhost URLs with common ports (3000-9999) | |
| # We ONLY allow: process.env.NEXT_PUBLIC_* || 'http://localhost:...' (or ws://, wss://, https://) | |
| # We reject: 'http://localhost:...' (without env var) | |
| # We reject: 'http://localhost:...' || process.env.NEXT_PUBLIC_* (reversed) | |
| HARDCODED=$(grep -rn -E "localhost:[0-9]{2,5}" web-ui/src \ | |
| --include="*.ts" \ | |
| --include="*.tsx" \ | |
| --include="*.js" \ | |
| --include="*.jsx" \ | |
| | grep -v "\.test\." \ | |
| | grep -v "\.spec\." \ | |
| | grep -v "// " \ | |
| | grep -v "/\*" \ | |
| | grep -vE "process\.env\.NEXT_PUBLIC_[A-Z0-9_]+\s*\|\|\s*['\"](https?|wss?)://" \ | |
| || true) | |
| if [ -n "$HARDCODED" ]; then | |
| echo "❌ Found hardcoded localhost URLs:" | |
| echo "$HARDCODED" | |
| echo "" | |
| echo "💡 Fix: Use process.env.NEXT_PUBLIC_API_URL instead" | |
| echo " Example: const API_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8080';" | |
| echo " Note: The env var MUST come BEFORE the fallback (not reversed)" | |
| exit 1 | |
| fi | |
| echo "✅ No hardcoded localhost URLs found" | |
| - name: Check for Vite-style env vars in Next.js code | |
| run: | | |
| echo "🔍 Checking for Vite-style environment variables..." | |
| # Skip if web-ui/src doesn't exist (v2 CLI-first mode) | |
| if [ ! -d "web-ui/src" ]; then | |
| echo "⏭️ Skipping: web-ui/src not found (v2 CLI-first mode)" | |
| exit 0 | |
| fi | |
| # Check for window.VITE_ or import.meta.env patterns | |
| VITE_VARS=$(grep -rn "window\.VITE_\|import\.meta\.env" web-ui/src \ | |
| --include="*.ts" \ | |
| --include="*.tsx" \ | |
| --include="*.js" \ | |
| --include="*.jsx" \ | |
| | grep -v "// " \ | |
| | grep -v "/\*" \ | |
| || true) | |
| if [ -n "$VITE_VARS" ]; then | |
| echo "❌ Found Vite-style environment variables in Next.js code:" | |
| echo "$VITE_VARS" | |
| echo "" | |
| echo "💡 Fix: Use process.env.NEXT_PUBLIC_* for Next.js" | |
| echo " Next.js uses NEXT_PUBLIC_ prefix for client-side env vars" | |
| exit 1 | |
| fi | |
| echo "✅ No Vite-style environment variables found" | |
| - name: Verify API files use consistent env vars | |
| run: | | |
| echo "🔍 Verifying API files use process.env.NEXT_PUBLIC_API_URL..." | |
| # Skip if web-ui/src doesn't exist (v2 CLI-first mode) | |
| if [ ! -d "web-ui/src" ]; then | |
| echo "⏭️ Skipping: web-ui/src not found (v2 CLI-first mode)" | |
| exit 0 | |
| fi | |
| # This check is a heuristic to catch files making API calls to localhost | |
| # without using environment variables. The primary hardcoded URL check above | |
| # is more precise; this is a secondary sanity check. | |
| # | |
| # Note: Files that have BOTH a fetch/axios localhost call AND a process.env | |
| # reference somewhere in the file are considered OK. This may miss edge cases | |
| # where the env var is for something unrelated to the localhost URL. | |
| ISSUES="" | |
| # Check common API-related files for hardcoded URLs | |
| for file in $(find web-ui/src -type f \( -name "*.ts" -o -name "*.tsx" \) \ | |
| -not -path "*/.next/*" \ | |
| -not -path "*/node_modules/*"); do | |
| # Skip test files | |
| if [[ $file == *".test."* ]] || [[ $file == *".spec."* ]]; then | |
| continue | |
| fi | |
| # Check if file has fetch or axios calls with hardcoded localhost | |
| # AND does not have any NEXT_PUBLIC env var reference | |
| if grep -qE "fetch\(.*localhost|axios.*localhost" "$file" 2>/dev/null; then | |
| if ! grep -q "process.env.NEXT_PUBLIC" "$file" 2>/dev/null; then | |
| ISSUES="${ISSUES}\n - ${file}: Contains localhost URL without env var reference" | |
| fi | |
| fi | |
| done | |
| if [ -n "$ISSUES" ]; then | |
| echo "⚠️ API files with potential issues (heuristic check):" | |
| echo -e "$ISSUES" | |
| echo "" | |
| echo "💡 These files appear to use localhost URLs without environment variable configuration" | |
| echo " This is a heuristic check - verify manually if these are intentional." | |
| # Changed from exit 1 to warning - the primary check above is more reliable | |
| # exit 1 | |
| else | |
| echo "✅ All API files properly configured" | |
| fi | |
| # ============================================ | |
| # Backend Unit Tests (After Code Quality) | |
| # ============================================ | |
| backend-tests: | |
| name: Backend Unit Tests | |
| runs-on: ubuntu-latest | |
| needs: code-quality | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| with: | |
| enable-cache: true | |
| - name: Create virtual environment | |
| run: uv venv | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Configure git for tests | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@github.com" | |
| - name: Install codeframe package | |
| run: | | |
| uv pip install -e . | |
| echo "✅ Package installed in editable mode" | |
| - name: Run pytest (full non-e2e suite) with coverage | |
| timeout-minutes: 20 | |
| run: | | |
| uv run pytest tests/ \ | |
| --ignore=tests/e2e \ | |
| -m "not lifecycle" \ | |
| -q \ | |
| --tb=short \ | |
| --cov=codeframe \ | |
| --cov-report=term \ | |
| --cov-report=xml \ | |
| --cov-report=html | |
| # Coverage is a GATE, not a report (#948): .coveragerc sets | |
| # fail_under = 80, which pytest-cov enforces on this run and which | |
| # the README badge mirrors. The step above fails on its own if the | |
| # floor is missed — nothing here needs to re-check it. | |
| echo "Note: gate runs every non-e2e test except 'lifecycle' (real-LLM," | |
| echo " run locally via scripts/lifecycle before opening a PR)." | |
| - name: Upload coverage reports | |
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 | |
| with: | |
| files: ./coverage.xml | |
| flags: backend | |
| name: backend-coverage | |
| # ============================================ | |
| # Frontend Unit Tests (After Code Quality) | |
| # ============================================ | |
| frontend-tests: | |
| name: Frontend Unit Tests | |
| runs-on: ubuntu-latest | |
| needs: code-quality | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'npm' | |
| cache-dependency-path: 'web-ui/package-lock.json' | |
| - name: Install dependencies | |
| working-directory: web-ui | |
| run: npm ci | |
| - name: Build (fail PR on TypeScript/build break) | |
| working-directory: web-ui | |
| env: | |
| NEXT_TELEMETRY_DISABLED: 1 | |
| run: npm run build | |
| - name: Run Jest tests with coverage | |
| working-directory: web-ui | |
| run: npm run test:coverage | |
| - name: Check coverage threshold (65%) | |
| working-directory: web-ui | |
| run: | | |
| COVERAGE=$(cat coverage/coverage-summary.json | jq '.total.statements.pct') | |
| echo "Coverage: ${COVERAGE}%" | |
| if (( $(echo "$COVERAGE < 65" | bc -l) )); then | |
| echo "❌ Coverage ${COVERAGE}% is below 65% threshold" | |
| exit 1 | |
| else | |
| echo "✅ Coverage ${COVERAGE}% meets 65% threshold" | |
| fi | |
| - name: Upload coverage reports | |
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 | |
| with: | |
| directory: web-ui/coverage | |
| flags: frontend | |
| name: frontend-coverage | |
| # ============================================ | |
| # E2E Backend Tests (Pytest) | |
| # ============================================ | |
| e2e-backend-tests: | |
| name: E2E Backend Tests | |
| runs-on: ubuntu-latest | |
| # Only run on main branch or scheduled runs (not every PR) | |
| if: github.ref == 'refs/heads/main' || github.event_name == 'schedule' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| with: | |
| enable-cache: true | |
| - name: Create virtual environment | |
| run: uv venv | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Initialize git for E2E tests | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@github.com" | |
| - name: Install codeframe package | |
| run: | | |
| uv pip install -e . | |
| echo "✅ Package installed in editable mode" | |
| # No server is started here any more (#948). This job used to boot uvicorn, | |
| # poll /health for up to 120s, and tear it down — while not one test under | |
| # tests/e2e makes an HTTP request. They drive the CLI through Typer's | |
| # CliRunner in-process. The boot verified nothing these tests need, and a | |
| # server that failed to start would have failed the job for an unrelated | |
| # reason. The real server IS exercised, by the E2E Browser job below, whose | |
| # playwright.config.ts starts it itself. | |
| - name: Run E2E backend tests | |
| run: | | |
| # "and not e2e_llm" is load-bearing (#946): a -m on the command line | |
| # REPLACES the one in pytest.ini's addopts, so a bare -m "e2e" would | |
| # re-select the paid real-LLM Golden Path tests here. | |
| set -o pipefail | |
| uv run pytest tests/e2e/ \ | |
| -v \ | |
| --tb=short \ | |
| -m "e2e and not e2e_llm" | tee /tmp/e2e-backend.log | |
| - name: Fail if nothing actually ran | |
| run: | | |
| # A run where every test skipped used to exit 0 and read as a pass | |
| # (#948). pytest exits 5 on "collected nothing" but has no equivalent | |
| # for "collected only skips", so assert on the summary line. | |
| if ! grep -qE "[0-9]+ passed" /tmp/e2e-backend.log; then | |
| echo "❌ The E2E backend suite reported no passing tests." | |
| echo " Everything skipped, or the summary format changed." | |
| tail -20 /tmp/e2e-backend.log | |
| exit 1 | |
| fi | |
| echo "✅ $(grep -oE "[0-9]+ passed" /tmp/e2e-backend.log | tail -1)" | |
| - name: Upload E2E test reports | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: e2e-backend-reports | |
| path: | | |
| tests/e2e/fixtures/ | |
| .pytest_cache/ | |
| - name: Upload the pytest log | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: e2e-backend-pytest-log | |
| path: /tmp/e2e-backend.log | |
| retention-days: 7 | |
| # ============================================ | |
| # E2E Browser Tests (Playwright) — rewritten for the Phase-3+ UI (#684) | |
| # ============================================ | |
| # `playwright.config.ts` (tests/e2e) starts the backend (uv uvicorn) and the | |
| # frontend (next build + start) itself via its `webServer` block, and | |
| # `global-setup.ts` seeds a workspace + login user. So these jobs only install | |
| # deps + browsers and run Playwright. | |
| # | |
| # - smoke: chromium, @smoke only, on every PR/push (gates merges via summary) | |
| # - full: all browsers, all specs, nightly schedule | |
| e2e-browser-smoke: | |
| name: E2E Browser Smoke (Chromium) | |
| runs-on: ubuntu-latest | |
| needs: code-quality | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| with: | |
| enable-cache: true | |
| - name: Install Python deps | |
| run: | | |
| uv venv | |
| uv sync --extra dev | |
| uv pip install -e . | |
| - name: Configure git (review diff needs a repo) | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@github.com" | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'npm' | |
| cache-dependency-path: 'web-ui/package-lock.json' | |
| - name: Install frontend deps | |
| working-directory: web-ui | |
| run: npm ci | |
| - name: Install E2E deps | |
| working-directory: tests/e2e | |
| run: npm ci | |
| - name: Install Playwright browser (chromium) | |
| working-directory: tests/e2e | |
| run: npx playwright install --with-deps chromium | |
| - name: Run Playwright smoke suite | |
| working-directory: tests/e2e | |
| run: npx playwright test --project=chromium --grep @smoke | |
| - name: Upload Playwright report | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: e2e-browser-smoke-report | |
| path: tests/e2e/playwright-report/ | |
| retention-days: 7 | |
| e2e-browser-full: | |
| name: E2E Browser Full (All Browsers) | |
| runs-on: ubuntu-latest | |
| # Nightly only — the full cross-browser sweep is too heavy for every PR. | |
| if: github.event_name == 'schedule' | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| with: | |
| enable-cache: true | |
| - name: Install Python deps | |
| run: | | |
| uv venv | |
| uv sync --extra dev | |
| uv pip install -e . | |
| - name: Configure git (review diff needs a repo) | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@github.com" | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'npm' | |
| cache-dependency-path: 'web-ui/package-lock.json' | |
| - name: Install frontend deps | |
| working-directory: web-ui | |
| run: npm ci | |
| - name: Install E2E deps | |
| working-directory: tests/e2e | |
| run: npm ci | |
| - name: Install Playwright browsers (all) | |
| working-directory: tests/e2e | |
| run: npx playwright install --with-deps | |
| - name: Run full Playwright suite | |
| working-directory: tests/e2e | |
| run: npx playwright test | |
| - name: Upload Playwright report | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: e2e-browser-full-report | |
| path: tests/e2e/playwright-report/ | |
| retention-days: 7 | |
| # ============================================ | |
| # Test Summary | |
| # ============================================ | |
| test-summary: | |
| name: Test Summary | |
| runs-on: ubuntu-latest | |
| needs: [backend-tests, frontend-tests, code-quality, check-hardcoded-urls, e2e-browser-smoke, workflow-lint] | |
| if: always() | |
| steps: | |
| - name: Report test results | |
| run: | | |
| echo "## Test Suite Results" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "| Check | Status |" >> $GITHUB_STEP_SUMMARY | |
| echo "|-------|--------|" >> $GITHUB_STEP_SUMMARY | |
| echo "| Code Quality | ${{ needs.code-quality.result }} |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Workflow Lint | ${{ needs.workflow-lint.result }} |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Hardcoded URLs | ${{ needs.check-hardcoded-urls.result }} |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Backend Tests | ${{ needs.backend-tests.result }} |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Frontend Tests | ${{ needs.frontend-tests.result }} |" >> $GITHUB_STEP_SUMMARY | |
| echo "| E2E Browser Smoke | ${{ needs.e2e-browser-smoke.result }} |" >> $GITHUB_STEP_SUMMARY | |
| # The smoke job is a merge gate: treat any non-success terminal state | |
| # (failure / cancelled / timed_out) as a gate failure, not just | |
| # "failure". Other jobs keep the file's existing "failure"-only check. | |
| if [ "${{ needs.code-quality.result }}" == "failure" ] || \ | |
| [ "${{ needs.workflow-lint.result }}" == "failure" ] || \ | |
| [ "${{ needs.check-hardcoded-urls.result }}" == "failure" ] || \ | |
| [ "${{ needs.backend-tests.result }}" == "failure" ] || \ | |
| [ "${{ needs.e2e-browser-smoke.result }}" == "failure" ] || \ | |
| [ "${{ needs.e2e-browser-smoke.result }}" == "cancelled" ] || \ | |
| [ "${{ needs.e2e-browser-smoke.result }}" == "timed_out" ] || \ | |
| [ "${{ needs.frontend-tests.result }}" == "failure" ]; then | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "❌ Some checks failed. Please review the logs above." >> $GITHUB_STEP_SUMMARY | |
| exit 1 | |
| else | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "✅ All checks passed!" >> $GITHUB_STEP_SUMMARY | |
| fi |