Skip to content

Commit b7b6768

Browse files
committed
ci: give time to start services
1 parent 8551e05 commit b7b6768

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/e2e-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,14 @@ jobs:
169169
- run: chmod a+x ./lightpanda
170170

171171
- name: start http
172-
run: go run ws/main.go & echo $! > WS.pid
172+
run: |
173+
go run ws/main.go & echo $! > WS.pid
174+
sleep 2
173175
174176
- name: run puppeteer
175177
run: |
176178
./lightpanda serve & echo $! > LPD.pid
179+
sleep 2
177180
RUNS=100 npm run bench-puppeteer-cdp > puppeteer.out || exit 1
178181
cat /proc/`cat LPD.pid`/status |grep VmHWM|grep -oP '\d+' > LPD.VmHWM
179182
kill `cat LPD.pid`

0 commit comments

Comments
 (0)