Restore explicit TypeScript checking in CI

This commit is contained in:
Shivam Mathur
2026-09-12 00:33:02 +05:30
parent ea331059db
commit 0e80ac5270
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -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
+1
View File
@@ -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": {