Skip to content

Commit d93c68f

Browse files
committed
ci(lint): add debug for import order and disable eslint cache
1 parent 89bbe99 commit d93c68f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ jobs:
3434
cache: 'pnpm'
3535
- run: make install-dependencies
3636
- run: make build
37-
- run: pnpm run lint
37+
# Debug: verify the exact file contents that ESLint lints on CI
38+
- name: Debug – show client.test.ts (imports)
39+
run: |
40+
git --no-pager show HEAD:packages/client/src/scw/__tests__/client.test.ts | sed -n '1,20p'
41+
- name: Debug – show error-parser.ts (imports)
42+
run: |
43+
git --no-pager show HEAD:packages/client/src/scw/errors/error-parser.ts | sed -n '1,25p'
44+
# Run ESLint without cache to avoid stale cache issues on CI runners
45+
- run: pnpm run lint -- --no-cache
3846
test:
3947
runs-on: ubuntu-24.04
4048
strategy:

0 commit comments

Comments
 (0)