Skip to content

Commit 2cf2b9c

Browse files
committed
ci(e2e): add debug steps to check build artifacts and server status
Signed-off-by: Vitor Mattos <[email protected]>
1 parent 61d1cb7 commit 2cf2b9c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/playwright.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,17 @@ jobs:
193193
timeout 30 bash -c 'until curl -s http://localhost:8080/status.php > /dev/null; do sleep 1; done'
194194
echo "Nextcloud is ready at http://localhost:8080"
195195
196+
- name: Debug - Check if build artifacts exist
197+
run: |
198+
echo "Checking for LibreSign JS build artifacts..."
199+
ls -lah apps/${{ env.APP_NAME }}/js/ || echo "js/ directory not found"
200+
echo "---"
201+
echo "Testing status endpoint:"
202+
curl -v http://localhost:8080/status.php
203+
echo "---"
204+
echo "Testing index endpoint:"
205+
curl -I http://localhost:8080/index.php
206+
196207
- name: Install Playwright browsers
197208
working-directory: apps/${{ env.APP_NAME }}
198209
run: npx playwright install chromium --with-deps

0 commit comments

Comments
 (0)