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 c9d628b commit e6657d8Copy full SHA for e6657d8
.github/workflows/integration.yml
@@ -48,6 +48,16 @@ jobs:
48
with:
49
ref: ${{ github.event.pull_request.head.sha || github.ref }}
50
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
+
61
- name: Install dependencies
62
run: npm ci
63
0 commit comments