Skip to content

Commit c8b32a4

Browse files
committed
fix(naga-health-check): update health check script syntax for consistency
1 parent 8df7ea5 commit c8b32a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/naga-health-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ jobs:
104104
- name: Health check summary
105105
if: always()
106106
run: |
107-
if [ ${{ job.status }} == 'success' ]; then
107+
if [[ "${{ job.status }}" == "success" ]]; then
108108
echo "✅ Health check passed for ${{ matrix.network }}"
109-
echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")"
109+
echo "Time: $(date -u +'%Y-%m-%d %H:%M:%S UTC')"
110110
else
111111
echo "❌ Health check failed for ${{ matrix.network }}"
112-
echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")"
112+
echo "Time: $(date -u +'%Y-%m-%d %H:%M:%S UTC')"
113113
echo "Please check the logs above for details"
114-
114+
fi

0 commit comments

Comments
 (0)