Some checks failed
CI / Lint, Typecheck & Test (push) Successful in 2m5s
Deploy — Staging / Lint, Typecheck & Test (push) Successful in 2m5s
Deploy — Staging / Build & push — admin (push) Failing after 3m11s
Deploy — Staging / Build & push — storefront (push) Failing after 2m23s
Deploy — Staging / Deploy to staging VPS (push) Has been skipped
Two root causes for the Docker build failures: 1. convex/_generated/api not found (both apps) turbo prune only traces npm workspace packages; the root convex/ directory is not a workspace package so it is excluded from out/full/. Copy it manually into the prune output after turbo prune runs. 2. @heroui/react not found (storefront) package-lock.json was generated with npm@11 but node:20-alpine ships npm@10. turbo warns it cannot parse the npm 11 lockfile and generates an incomplete out/package-lock.json, causing npm ci inside Docker to miss packages. Upgrade npm to 11 in the deps stage of both Dockerfiles. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>