Skip to content

Commit 0f0afe9

Browse files
committed
Use tsc directly, avoid npx, print actual version
Somehow `npx tsc` was pointing at an older version. Possibly the binstubs are corrupted in CI… somehow.
1 parent 611e1ae commit 0f0afe9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ jobs:
5555
- run: npm i typescript@${TS_VERSION}
5656
env:
5757
TS_VERSION: ${{ matrix.ts-version }}
58-
- run: npm ls typescript
59-
continue-on-error: true
60-
- run: npx tsc --noEmit
58+
- run: ./node_modules/typescript/bin/tsc --version
59+
- run: ./node_modules/typescript/bin/tsc --noEmit
6160

6261
lockfile_churn:
6362
name: Test package-lock for unexpected modifications

0 commit comments

Comments
 (0)