Skip to content

Commit d15b1c2

Browse files
committed
ci: remove debug steps from lint workflow
1 parent ea6901c commit d15b1c2

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,7 @@ jobs:
3434
cache: 'pnpm'
3535
- run: make install-dependencies
3636
- run: make build
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-
- 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
50-
# Run ESLint without cache to avoid stale cache issues on CI runners
51-
- run: pnpm exec eslint --no-cache .
37+
- run: pnpm run lint
5238
test:
5339
runs-on: ubuntu-24.04
5440
strategy:

0 commit comments

Comments
 (0)