We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89bbe99 commit d93c68fCopy full SHA for d93c68f
.github/workflows/run-tests.yml
@@ -34,7 +34,15 @@ jobs:
34
cache: 'pnpm'
35
- run: make install-dependencies
36
- run: make build
37
- - run: pnpm run lint
+ # 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
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
46
test:
47
runs-on: ubuntu-24.04
48
strategy:
0 commit comments