Files
computer/scripts/typescript-typecheck.js
Aditya Bavadekar 51ee79a9d2 chore: set up pre-commit hooks and CI/CD workflow
- Add a new GitHub Actions workflow (`lint.yml`)
- Update `CONTRIBUTING.md` and `Development.md` to reflect the new linting setup and guide contributors.
- Include a TypeScript type checking script (`typescript-typecheck.js`)
2025-10-22 11:10:21 -07:00

9 lines
189 B
JavaScript

#!/usr/bin/env node
const { execSync } = require('child_process');
try {
execSync('pnpm -C libs/typescript -r run typecheck', { stdio: 'inherit' });
} catch (err) {
process.exit(1);
}