diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7b057e0..30b456c 100755 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -55,11 +55,11 @@ jobs: vale sync echo "=== Vale Results ===" - vale --output=line . || EXIT_CODE=$? + vale --output=line content/ || EXIT_CODE=$? # Also try JSON for structured output echo "" echo "=== Vale JSON ===" - vale --output=JSON . || true + vale --output=JSON content/ || true exit ${EXIT_CODE:-0}