7b33516686
Adds the M5.3 deliverable scoped to local-dev (stage doesn't exist yet,
so the CI e2e job is gated behind the repo variable RUN_E2E='true' —
defaults off).
Layout:
playwright.config.ts chromium project; baseURL defaults to
http://acme.localhost:3000 (subdomain routing
fires). PLAYWRIGHT_BASE_URL / APEX_URL / etc.
env vars override for stage.
tests/e2e/apex.spec.ts landing page renders
tests/e2e/tenant.spec.ts signed-out dashboard shows Sign in
button; unknown slug returns 404
tests/e2e/health.spec.ts every dev-stack endpoint reachable
(portal /api/auth/providers, tenant-
registry /healthz, KC realm metadata)
Run locally with the full dev stack up:
cd platform/orca-platform && make dev-up
cd platform/tenant-registry && make dev
cd platform/portal && make dev
cd platform/portal && make e2e
OIDC click-through not asserted yet — Keycloak in headless mode is
flaky and depends on a stable test-user password. The current gate
(Sign-in button visible) catches the more common 'auth completely
broken' regression; the deeper smoke lands when stage has its own
test fixture.
tsconfig now excludes tests/e2e so vitest + tsc don't fight over
Playwright type imports.
Refs: M5.3
133 lines
4.8 KiB
YAML
133 lines
4.8 KiB
YAML
# CI for TypeScript / Next.js services on Gitea Actions.
|
|
# `shared` always runs; `test`/`e2e`/`image` activate when package.json lands.
|
|
name: ci
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
shared:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with: { fetch-depth: 0 }
|
|
|
|
- name: commitlint (PR only)
|
|
if: github.event_name == 'pull_request'
|
|
shell: bash
|
|
env:
|
|
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
run: |
|
|
set -euo pipefail
|
|
pattern='^(feat|fix|docs|chore|refactor|test|perf|build|ci|revert)(\([a-z0-9_/.-]+\))?!?: .{1,72}$'
|
|
bad=0
|
|
while IFS= read -r subject; do
|
|
if ! [[ "$subject" =~ $pattern ]]; then
|
|
echo "::error::Commit subject does not match Conventional Commits: $subject"
|
|
bad=$((bad+1))
|
|
fi
|
|
done < <(git log --format=%s "${BASE_SHA}..${HEAD_SHA}")
|
|
if [ "$bad" -gt 0 ]; then
|
|
echo "::error::$bad commit(s) failed commitlint."
|
|
exit 1
|
|
fi
|
|
echo "commitlint: OK"
|
|
|
|
- name: gitleaks
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
GL_VERSION=8.18.4
|
|
curl -fsSL "https://github.com/gitleaks/gitleaks/releases/download/v${GL_VERSION}/gitleaks_${GL_VERSION}_linux_x64.tar.gz" \
|
|
| tar -xz -C /tmp gitleaks
|
|
/tmp/gitleaks detect --source . --no-banner --redact --verbose --exit-code 1
|
|
|
|
- name: trivy fs scan
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
TRIVY_VERSION=0.70.0
|
|
curl -fsSL "https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz" \
|
|
| tar -xz -C /tmp trivy
|
|
/tmp/trivy fs --severity HIGH,CRITICAL --exit-code 1 --no-progress --skip-dirs node_modules,target,dist .
|
|
|
|
test:
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with: { version: 9 }
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: pnpm
|
|
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm lint
|
|
- run: pnpm typecheck
|
|
# `pnpm test` already includes --coverage via the package.json script.
|
|
- run: pnpm test
|
|
- name: coverage gate
|
|
run: |
|
|
node -e "const c=require('./coverage/coverage-summary.json').total.lines.pct; if (c<70) { console.error('coverage', c, '< 70%'); process.exit(1) }"
|
|
- name: build
|
|
env:
|
|
# Required at build-time by Auth.js. Replaced by Infisical-sourced
|
|
# secret in stage/prod via Orca env injection (M5.1+).
|
|
AUTH_SECRET: ci-build-dummy-${{ github.sha }}
|
|
run: pnpm build
|
|
|
|
e2e:
|
|
needs: test
|
|
runs-on: docker
|
|
# Two gates: playwright.config.ts must exist + the repo variable
|
|
# RUN_E2E must be 'true'. Until stage.breakpilot.com is up (M1.2 +
|
|
# M0.3), the e2e job is opt-in. Locally, devs run `make e2e` against
|
|
# their own dev stack.
|
|
if: hashFiles('playwright.config.ts','playwright.config.js') != '' && github.event_name == 'push' && github.ref == 'refs/heads/main' && vars.RUN_E2E == 'true'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
with: { version: 9 }
|
|
- uses: actions/setup-node@v4
|
|
with: { node-version: '20', cache: pnpm }
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm exec playwright install --with-deps chromium
|
|
- run: pnpm e2e
|
|
env:
|
|
PLAYWRIGHT_BASE_URL: ${{ vars.STAGE_PORTAL_BASE_URL }}
|
|
PLAYWRIGHT_APEX_URL: ${{ vars.STAGE_PORTAL_APEX_URL }}
|
|
PLAYWRIGHT_TEST_USER: ${{ secrets.STAGE_TEST_USER }}
|
|
PLAYWRIGHT_TEST_PASS: ${{ secrets.STAGE_TEST_PASS }}
|
|
|
|
image:
|
|
needs: [shared, test]
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && hashFiles('Dockerfile') != ''
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: docker/login-action@v3
|
|
with:
|
|
registry: registry.breakpilot.com
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
password: ${{ secrets.REGISTRY_PASS }}
|
|
- uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: |
|
|
registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }}
|
|
registry.breakpilot.com/${{ github.event.repository.name }}:env-stage
|
|
- uses: anchore/sbom-action@v0
|
|
with:
|
|
image: registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }}
|
|
- run: orca apply --env=stage --image-tag=sha-${{ github.sha }}
|
|
env:
|
|
ORCA_TOKEN: ${{ secrets.ORCA_STAGE_TOKEN }}
|