Skip to content

Commit f343ac2

Browse files
committed
ci(lint): add detailed debug for import/order failures and no-cache per-file
1 parent 77ebe92 commit f343ac2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ jobs:
4141
- name: Debug – show error-parser.ts (imports)
4242
run: |
4343
git --no-pager show HEAD:packages/client/src/scw/errors/error-parser.ts | sed -n '1,25p'
44+
- name: Debug – run eslint on client.test.ts (no cache)
45+
run: pnpm exec eslint --no-cache packages/client/src/scw/__tests__/client.test.ts || true
46+
- name: Debug – run eslint on error-parser.ts (no cache)
47+
run: pnpm exec eslint --no-cache packages/client/src/scw/errors/error-parser.ts || true
48+
- name: Debug – print eslint config for client.test.ts
49+
run: pnpm exec eslint --print-config packages/client/src/scw/__tests__/client.test.ts | head -200
4450
# Run ESLint without cache to avoid stale cache issues on CI runners
4551
- run: pnpm exec eslint --no-cache .
4652
test:

0 commit comments

Comments
 (0)