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 8551e05 commit b7b6768Copy full SHA for b7b6768
.github/workflows/e2e-test.yml
@@ -169,11 +169,14 @@ jobs:
169
- run: chmod a+x ./lightpanda
170
171
- name: start http
172
- run: go run ws/main.go & echo $! > WS.pid
+ run: |
173
+ go run ws/main.go & echo $! > WS.pid
174
+ sleep 2
175
176
- name: run puppeteer
177
run: |
178
./lightpanda serve & echo $! > LPD.pid
179
180
RUNS=100 npm run bench-puppeteer-cdp > puppeteer.out || exit 1
181
cat /proc/`cat LPD.pid`/status |grep VmHWM|grep -oP '\d+' > LPD.VmHWM
182
kill `cat LPD.pid`
0 commit comments