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 b62faef commit 74fa9a6Copy full SHA for 74fa9a6
.github/workflows/e2e-test.yml
@@ -127,21 +127,8 @@ jobs:
127
128
- run: chmod a+x ./lightpanda
129
130
- - name: run puppeteer links
+ - name: run end to end tests
131
run: |
132
./lightpanda serve & echo $! > LPD.pid
133
- node puppeteer/links.js || exit 1
+ go run runner/main.go --verbose
134
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
144
- python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
145
146
- node playwright/connect.js || exit 1
147
- kill `cat LPD.pid` `cat PYTHON.pid`
0 commit comments