ci: use the demo go runner

This commit is contained in:
Pierre Tachoire
2025-04-17 17:56:17 +02:00
parent b62faef520
commit 74fa9a6b2b

View File

@@ -127,21 +127,8 @@ jobs:
- run: chmod a+x ./lightpanda - run: chmod a+x ./lightpanda
- name: run puppeteer links - name: run end to end tests
run: | run: |
./lightpanda serve & echo $! > LPD.pid ./lightpanda serve & echo $! > LPD.pid
node puppeteer/links.js || exit 1 go run runner/main.go --verbose
kill `cat LPD.pid` kill `cat LPD.pid`
- name: run puppeteer dump
run: |
./lightpanda serve & echo $! > LPD.pid
node puppeteer/dump.js || exit 1
kill `cat LPD.pid`
- name: run playwright connect
run: |
python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
./lightpanda serve & echo $! > LPD.pid
node playwright/connect.js || exit 1
kill `cat LPD.pid` `cat PYTHON.pid`