From dd4760858d597bfbe43bba04b88b8813c2964e08 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 30 Mar 2026 09:52:31 +0200 Subject: [PATCH] ci: fix puppeteer proxy test --- .github/workflows/e2e-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 07f55cfe..c58514c8 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -107,8 +107,11 @@ jobs: export PROXY_USERNAME=username PROXY_PASSWORD=password ./proxy/proxy & echo $! > PROXY.id ./lightpanda serve & echo $! > LPD.pid - URL=https://demo-browser.lightpanda.io/campfire-commerce/ node puppeteer/proxy_auth.js BASE_URL=https://demo-browser.lightpanda.io/ node playwright/proxy_auth.js + kill `cat LPD.pid` + + ./lightpanda serve --http-proxy 'http://127.0.0.1:3000' & echo $! > LPD.pid + URL=https://demo-browser.lightpanda.io/campfire-commerce/ node puppeteer/proxy_auth.js kill `cat LPD.pid` `cat PROXY.id` # e2e tests w/ web-bot-auth configuration on.