mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
- 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`)
9 lines
189 B
JavaScript
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);
|
|
}
|