From 04b88cf2bbdb0c5506d152f7159e427540aa1cff Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Mon, 5 Feb 2024 20:45:53 +0100 Subject: [PATCH] Fixed type checking test. --- .github/workflows/perform-type-check.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/perform-type-check.yml b/.github/workflows/perform-type-check.yml index 45c4c9665..66f57672e 100644 --- a/.github/workflows/perform-type-check.yml +++ b/.github/workflows/perform-type-check.yml @@ -1,4 +1,4 @@ -name: "Perform type cehcks" +name: "Perform type checks" # any branch is useful for testing before a PR is submitted on: [push, pull_request] @@ -26,7 +26,8 @@ jobs: src/bin/doc/package-lock.json - name: Install all dependencies and symlink for ep_etherpad-lite - run: src/bin/installDeps.sh + run: ./bin/installDeps.sh + working-directory: ./src - name: Perform type check working-directory: ./src - run: npx tsc --noEmit \ No newline at end of file + run: npm run ts-check \ No newline at end of file