log ci fail
Some checks failed
CI / build-and-test (push) Failing after 1m58s
CI / deploy (push) Has been skipped

This commit is contained in:
SpecialX
2026-02-25 11:02:06 +08:00
parent ca465622dc
commit ddd3227693

View File

@@ -34,6 +34,15 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm ci 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 - name: Lint
run: npm run lint run: npm run lint