14398d5fa8
web-ci.yml — runs on push/PR to master|dev that touches web/**: - format:check (prettier --check) - lint (eslint flat config) - type-check (tsc --noEmit) - bun run build (next build, sanity) - bunx opennextjs-cloudflare build (Cloudflare worker bundle) web-deploy.yml — runs on push to master that touches web/** OR manual workflow_dispatch (with optional environment input): - bun install --frozen-lockfile - bun run prebuild + bunx opennextjs-cloudflare build - cloudflare/wrangler-action@v3 deploy with CLOUDFLARE_API_TOKEN + CLOUDFLARE_ACCOUNT_ID secrets, scoped to working-directory: web Both gated by paths-filter so plugin-only changes do not trigger them. Concurrency group cancels in-progress CI runs but NOT in-progress deploys. A web-production GitHub environment is referenced so deploys can be gated behind required reviewers / wait timers if desired. Verified locally end-to-end before push: - bun install: 678 packages - format:check: pass after `bun run format` reformatted 21 files - lint: pass - type-check: pass - bun run build: pass (4 locales × pages built) - bunx opennextjs-cloudflare build: pass (.open-next/worker.js generated)