Skip to content

Commit 1196cba

Browse files
CopilotBoshen
andcommitted
Enhance CI workflow with better build verification
Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
1 parent 2202f66 commit 1196cba

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,10 @@ jobs:
5353

5454
- name: Check build artifacts
5555
run: |
56-
ls -la apps/dashboard/dist/
57-
echo "Build completed successfully"
56+
if [ -d "apps/dashboard/dist" ]; then
57+
echo "✅ Build artifacts created successfully"
58+
ls -la apps/dashboard/dist/
59+
else
60+
echo "❌ Build artifacts not found"
61+
exit 1
62+
fi

0 commit comments

Comments
 (0)