Skip to content

Commit 953f931

Browse files
bthosCopilot
andauthored
Update .github/workflows/validate-registry.yml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent cafd85d commit 953f931

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/validate-registry.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@ jobs:
3333
3434
- name: Validate registry (if exists)
3535
run: |
36-
npm run validate || echo "⚠️ registry.json not found, skipping validation"
36+
if [ -f registry.json ]; then
37+
npm run validate
38+
else
39+
echo "⚠️ registry.json not found, skipping validation"
40+
fi

0 commit comments

Comments
 (0)