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 4a49bdd commit eb9a934Copy full SHA for eb9a934
.github/workflows/test-mcp-server.yml
@@ -270,8 +270,9 @@ jobs:
270
run: |
271
echo "Testing workflow: /generate-sync → /compile..."
272
273
- # Check if we're working with a fallback template
274
- if [[ "${steps.test-generate-sync.outputs.status}" == "fallback" ]]; then
+ # Fix the variable reference - use proper quoting and check if variable exists
+ STATUS="${steps.test-generate-sync.outputs.status:-unknown}"
275
+ if [[ "$STATUS" == "fallback" ]]; then
276
echo "WARNING: Testing with fallback template code - LLM generation failed but continuing with tests"
277
fi
278
0 commit comments