diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c0458ea..c6626a6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -34,6 +34,15 @@ jobs: - name: Install dependencies run: npm ci + - name: Dump npm logs + if: failure() + run: | + ls -la /root/.npm/_logs || true + for f in /root/.npm/_logs/*-debug-*.log; do + echo "===== $f =====" + cat "$f" || true + done + - name: Lint run: npm run lint