Skip to content

Commit e6657d8

Browse files
ci: add debug step and cypress env config for integration tests
1 parent c9d628b commit e6657d8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/integration.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ jobs:
4848
with:
4949
ref: ${{ github.event.pull_request.head.sha || github.ref }}
5050

51+
- name: Debug - Check if secrets are loaded
52+
run: |
53+
echo "Checking if CYPRESS_USER_EMAIL is set..."
54+
if [ -z "$CYPRESS_USER_EMAIL" ]; then
55+
echo "❌ CYPRESS_USER_EMAIL is NOT set or empty"
56+
exit 1
57+
else
58+
echo "✅ CYPRESS_USER_EMAIL is set (value: ${CYPRESS_USER_EMAIL:0:3}***@***)"
59+
fi
60+
5161
- name: Install dependencies
5262
run: npm ci
5363

0 commit comments

Comments
 (0)