Skip to content

Commit

Permalink
Use tsc directly, avoid npx, print actual version
Browse files Browse the repository at this point in the history
Somehow `npx tsc` was pointing at an older version. Possibly the binstubs are corrupted in CI… somehow.
  • Loading branch information
novemberborn committed Jun 6, 2022
1 parent 611e1ae commit 0f0afe9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -55,9 +55,8 @@ jobs:
- run: npm i typescript@${TS_VERSION}
env:
TS_VERSION: ${{ matrix.ts-version }}
- run: npm ls typescript
continue-on-error: true
- run: npx tsc --noEmit
- run: ./node_modules/typescript/bin/tsc --version
- run: ./node_modules/typescript/bin/tsc --noEmit

lockfile_churn:
name: Test package-lock for unexpected modifications
Expand Down

0 comments on commit 0f0afe9

Please sign in to comment.