summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml3
-rw-r--r--package.json2
2 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 22c47006..c4dd263c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,8 +47,7 @@ jobs:
# 6. Type Checking
- name: Run type check
- run: npm run typecheck # Or: tsc --noEmit
- continue-on-error: true
+ run: npm run typecheck
# 7. Build
# Optional if your tests run directly on TS files (e.g., using ts-jest, ts-node)
diff --git a/package.json b/package.json
index c6a2b76c..185946eb 100644
--- a/package.json
+++ b/package.json
@@ -16,7 +16,7 @@
"debug": "NODE_ENV=development DEBUG=1 scripts/start.sh",
"lint:fix": "eslint . --fix",
"lint": "eslint . --ext .ts,.tsx",
- "typecheck": "tsc --noEmit --jsx react",
+ "typecheck": "tsc --noEmit --jsx react-jsx",
"format": "prettier --write .",
"preflight": "npm run format --workspaces --if-present && npm run lint --workspaces --if-present && npm run test --workspaces --if-present",
"auth:npm": "npx google-artifactregistry-auth",