From 8f1b34cd0cf9245b76d2a6439db7a33269b382f5 Mon Sep 17 00:00:00 2001 From: Ethan Swan Date: Sun, 8 Feb 2026 21:29:17 -0600 Subject: [PATCH] Fix CI build by adding missing IDP env vars The Next.js build fails because lib/idp/client.ts has module-level requiredEnv() calls for IDP_BASE_URL and NEXT_PUBLIC_IDP_BASE_URL. The Dockerfile already sets these to dummy values for the build step, but the CI workflow was missing them. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/pr-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 4ae2fbd8..d105cffa 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -38,3 +38,5 @@ jobs: env: NODE_ENV: production DATABASE_URL: postgresql://dummy:dummy@localhost:5432/dummy + IDP_BASE_URL: http://dummy + NEXT_PUBLIC_IDP_BASE_URL: http://dummy