From a0d1e1dff8c234e9e2df92ab5c10192f30119ddf Mon Sep 17 00:00:00 2001 From: Jonathan McPherson Date: Tue, 10 Dec 2024 09:09:41 -0800 Subject: [PATCH] use npx to run typescript compiler --- .github/workflows/positron-python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/positron-python-ci.yml b/.github/workflows/positron-python-ci.yml index 431a8cc6cea..5321e453a15 100644 --- a/.github/workflows/positron-python-ci.yml +++ b/.github/workflows/positron-python-ci.yml @@ -406,5 +406,5 @@ jobs: - name: Run smoke tests env: POSITRON_GITHUB_PAT: ${{ github.token }} - run: npm run tsc && node ./out/test/smokeTest.js + run: npx tsc && node ./out/test/smokeTest.js if: matrix.test-suite == 'smoke'