From 0f0afe9b1eabccbb544ccd0fcf7351bb6e88d772 Mon Sep 17 00:00:00 2001 From: Mark Wubben Date: Mon, 6 Jun 2022 13:59:55 +0200 Subject: [PATCH] Use tsc directly, avoid npx, print actual version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Somehow `npx tsc` was pointing at an older version. Possibly the binstubs are corrupted in CI… somehow. --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c7edb4cb..38dbc024c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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