We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e000664 commit 622192cCopy full SHA for 622192c
.github/workflows/e2e-test.yml
@@ -108,6 +108,15 @@ jobs:
108
go run runner/main.go
109
kill `cat LPD.pid` `cat PROXY.id`
110
111
+ - name: run request interception through proxy
112
+ run: |
113
+ export PROXY_USERNAME=username PROXY_PASSWORD=password URL=https://httpbin.io/html
114
+ ./proxy/proxy & echo $! > PROXY.id
115
+ ./lightpanda serve & echo $! > LPD.pid
116
+ node puppeteer/proxy_auth.js
117
+ node playwright/proxy_auth.js
118
+ kill `cat LPD.pid` `cat PROXY.id`
119
+
120
cdp-and-hyperfine-bench:
121
name: cdp-and-hyperfine-bench
122
needs: zig-build-release
0 commit comments