Runner debug 22.
All checks were successful
lint / runner / vale (push) Successful in 6s

This commit is contained in:
g_it 2026-04-08 00:51:20 +02:00
commit 28da416bd6
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
2 changed files with 20 additions and 8 deletions

View file

@ -52,14 +52,26 @@ jobs:
wget -qO- https://github.com/errata-ai/vale/releases/download/v3.14.1/vale_3.14.1_Linux_64-bit.tar.gz | tar xz -C /tmp
export PATH="/tmp:$PATH"
echo "=== Where are we? ==="
pwd
echo ""
echo "=== Content directory exists? ==="
ls -la /workspace/g_it/site/content/ 2>/dev/null || echo "NOT FOUND at absolute path"
ls -la content/ 2>/dev/null || echo "NOT FOUND at relative path"
echo ""
echo "=== Find all markdown files ==="
find /workspace/g_it/site -name "*.md" -type f 2>/dev/null | head -20
echo ""
echo "=== Sync ==="
vale sync
echo "=== Vale Results ==="
vale --output=line content/ || EXIT_CODE=$?
# Also try JSON for structured output
echo ""
echo "=== Vale JSON ==="
vale --output=JSON content/ || true
echo "=== Run Vale with explicit path ==="
vale --output=line /workspace/g_it/site/content/ || true
exit ${EXIT_CODE:-0}
echo ""
echo "=== Or try with glob pattern ==="
vale --output=line "/workspace/g_it/site/content/**/*.md" 2>/dev/null || vale --output=line "content/**/*.md" 2>/dev/null || true