The CI workflow runs tests but does not run tsc --noEmit for the backend, API, and frontend TypeScript projects. Type errors that don't affect test execution can be merged without detection.
File: CI workflow files
Fix: Add a typecheck step to the CI workflow that runs tsc --noEmit for each TypeScript project.
The CI workflow runs tests but does not run
tsc --noEmitfor the backend, API, and frontend TypeScript projects. Type errors that don't affect test execution can be merged without detection.File: CI workflow files
Fix: Add a
typecheckstep to the CI workflow that runstsc --noEmitfor each TypeScript project.