fix(ci): use TEST_URL in check-forms.ts for E2E consistency
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Successful in 1m54s
Build & Deploy / 🏗️ Build (push) Successful in 11m42s
Build & Deploy / 🚀 Deploy (push) Failing after 10s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-03-02 11:24:41 +01:00
parent ab15f7f35b
commit b639fffe7f

View File

@@ -1,6 +1,6 @@
import puppeteer from "puppeteer";
const targetUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000";
const targetUrl = process.env.TEST_URL || "http://localhost:3000";
const gatekeeperPassword = process.env.GATEKEEPER_PASSWORD || "secret"; // Use ENV or default
async function main() {