From 0e80ac5270443c7f1e690d6e7cac9967bd6e072d Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Fri, 11 Sep 2026 20:54:16 +0530 Subject: [PATCH] Restore explicit TypeScript checking in CI --- .github/workflows/node.yml | 3 +++ package.json | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 9f0801c4..df890208 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -52,6 +52,9 @@ jobs: - name: ESLint Check run: npm run lint + - name: TypeScript Check + run: npm run typecheck + - name: Run tests run: npm test diff --git a/package.json b/package.json index 045aeebb..ebef37c1 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "format": "prettier --write **/src/*.ts **/__tests__/*.ts && git add -f __tests__/ ", "format-check": "prettier --check **/src/*.ts **/__tests__/*.ts", "release": "ncc build -m -o dist && git add -f dist/", + "typecheck": "tsc --project tsconfig.test.json --noEmit", "test": "jest" }, "repository": {