Skip to content

Commit 3510cda

Browse files
committed
fix(workflow): exclude showcase directory from broken link check
1 parent bbfdf26 commit 3510cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
# Simple check for common broken link patterns
3232
echo "Checking for potential broken links..."
33-
if grep -r "http://localhost\|http://127.0.0.1" docs/; then
33+
if grep -r "http://localhost\|http://127.0.0.1" docs/ --exclude-dir=showcase; then
3434
echo "❌ Found localhost links that should be removed"
3535
exit 1
3636
fi

0 commit comments

Comments
 (0)