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

This commit is contained in:
g_it 2026-04-08 00:41:14 +02:00
commit 2714df4305
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627

View file

@ -42,7 +42,24 @@ jobs:
git remote -v
# Original Vale action step
- uses: https://github.com/vale-cli/vale-action@v2
with:
fail_on_error: true
files: .
# - uses: https://github.com/vale-cli/vale-action@v2
# with:
# fail_on_error: true
# files: .
- name: Install and run Vale
run: |
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"
vale sync
echo "=== Vale Results ==="
vale --output=line . || EXIT_CODE=$?
# Also try JSON for structured output
echo ""
echo "=== Vale JSON ==="
vale --output=JSON . || true
exit ${EXIT_CODE:-0}