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 bb40048 commit 3cbd7d7Copy full SHA for 3cbd7d7
.github/workflows/ci.yml
@@ -142,6 +142,17 @@ jobs:
142
curl -ksf https://127.0.0.1:5001/api/v1/auth/verify-token || echo "WARNING: Auth endpoint returned error (expected without cookies)"
143
echo "Services ready!"
144
145
+ - name: Debug frontend state
146
+ run: |
147
+ echo "=== Check JS bundle for baseUrl ==="
148
+ curl -ks https://127.0.0.1:5001/build/main.js | grep -o "baseUrl[^,]*" | head -3 || echo "not found"
149
+ echo ""
150
+ echo "=== Test auth API directly ==="
151
+ curl -ksv https://127.0.0.1:5001/api/v1/auth/verify-token 2>&1 | head -30
152
153
+ echo "=== Frontend container logs ==="
154
+ docker logs frontend 2>&1 | tail -50
155
+
156
- name: Run E2E tests
157
working-directory: frontend
158
env:
0 commit comments