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 ae0b312 commit 9c0bb96Copy full SHA for 9c0bb96
.github/workflows/wokwi-test.yml
@@ -64,6 +64,18 @@ jobs:
64
- name: Install Playwright browsers
65
run: npx playwright install --with-deps chromium
66
67
+ - name: Debug - Verify token is set
68
+ run: |
69
+ if [ -z "$WOKWI_CLI_TOKEN" ]; then
70
+ echo "❌ ERROR: WOKWI_CLI_TOKEN is not set"
71
+ echo "Please configure WOKWI_CLI_TOKEN as a repository secret"
72
+ exit 1
73
+ else
74
+ echo "✅ WOKWI_CLI_TOKEN is set (length: ${#WOKWI_CLI_TOKEN} characters)"
75
+ fi
76
+ env:
77
+ WOKWI_CLI_TOKEN: ${{ secrets.WOKWI_CLI_TOKEN }}
78
+
79
- name: Start Wokwi simulator in background
80
env:
81
WOKWI_CLI_TOKEN: ${{ secrets.WOKWI_CLI_TOKEN }}
0 commit comments