Skip to content

Commit 74fa9a6

Browse files
committed
ci: use the demo go runner
1 parent b62faef commit 74fa9a6

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -127,21 +127,8 @@ jobs:
127127

128128
- run: chmod a+x ./lightpanda
129129

130-
- name: run puppeteer links
130+
- name: run end to end tests
131131
run: |
132132
./lightpanda serve & echo $! > LPD.pid
133-
node puppeteer/links.js || exit 1
133+
go run runner/main.go --verbose
134134
kill `cat LPD.pid`
135-
136-
- name: run puppeteer dump
137-
run: |
138-
./lightpanda serve & echo $! > LPD.pid
139-
node puppeteer/dump.js || exit 1
140-
kill `cat LPD.pid`
141-
142-
- name: run playwright connect
143-
run: |
144-
python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
145-
./lightpanda serve & echo $! > LPD.pid
146-
node playwright/connect.js || exit 1
147-
kill `cat LPD.pid` `cat PYTHON.pid`

0 commit comments

Comments
 (0)