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 61d1cb7 commit 2cf2b9cCopy full SHA for 2cf2b9c
1 file changed
.github/workflows/playwright.yml
@@ -193,6 +193,17 @@ jobs:
193
timeout 30 bash -c 'until curl -s http://localhost:8080/status.php > /dev/null; do sleep 1; done'
194
echo "Nextcloud is ready at http://localhost:8080"
195
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
204
+ echo "Testing index endpoint:"
205
+ curl -I http://localhost:8080/index.php
206
+
207
- name: Install Playwright browsers
208
working-directory: apps/${{ env.APP_NAME }}
209
run: npx playwright install chromium --with-deps
0 commit comments