Skip to content

Commit 9dfeca3

Browse files
committed
Fix syntax and messaging in CI status check step
Corrected a typo in the step command from 'ruecho' to 'run' and removed emoji from status messages for consistency. Ensures proper execution and clearer output in the CI workflow.
1 parent 15968b2 commit 9dfeca3

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,21 +166,19 @@ jobs:
166166

167167
steps:
168168
- name: Check status
169-
ruecho "Lint and Type Check: ${{ needs.lint-and-type-check.result }}"
169+
run: |
170+
echo "Lint and Type Check: ${{ needs.lint-and-type-check.result }}"
170171
echo "Build: ${{ needs.build.result }}"
171172
echo "Check Format: ${{ needs.check-format.result }}"
172173
echo "Security Scan: ${{ needs.security-scan.result }}"
173174
174-
# Only require build to pass, others are informational
175175
if [ "${{ needs.build.result }}" != "success" ]; then
176-
echo "Build failed! This is required."
176+
echo "Build failed! This is required."
177177
exit 1
178178
fi
179179
180-
# Warn about other failures but don't block
181180
if [ "${{ needs.lint-and-type-check.result }}" != "success" ]; then
182-
echo "⚠️ Lint/Type check had issues (non-blocking)"
181+
echo "Lint/Type check had issues (non-blocking)"
183182
fi
184183
185-
echo "✅
186184
echo "All required checks passed!"

0 commit comments

Comments
 (0)