Files
Eunjae Lee 9efaa03f43 feat: add typecheck workflow for pull requests (#560)
* feat: add typecheck workflow for pull requests

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* refactor: rename typecheck to type-check and add packages/ui support

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* refactor: remove unnecessary type-check:ci script

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* refactor: revert type-check back to typecheck

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2025-12-09 15:53:24 +01:00

28 lines
524 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"cache": true,
"dependsOn": ["^lint"]
},
"typecheck": {
"cache": true,
"dependsOn": ["^typecheck"]
}
},
"ui": "tui"
}