From eae8a90a89e35d6feb094f8957ecc1950e54c98c Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Tue, 16 Sep 2025 14:38:27 +0200 Subject: [PATCH] ci: add request interception through proxy test --- .github/workflows/e2e-test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 2b3f7560..fb295246 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -108,6 +108,15 @@ jobs: go run runner/main.go kill `cat LPD.pid` `cat PROXY.id` + - name: run request interception through proxy + run: | + 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` `cat PROXY.id` + cdp-and-hyperfine-bench: name: cdp-and-hyperfine-bench needs: zig-build-release