Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Failing after 5s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s
CI - Lint, Typecheck & Test / quality-assurance (pull_request) Successful in 7m43s
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [
|
|
"pnpm-lock.yaml",
|
|
".gitea/workflows/ci.yml",
|
|
".gitea/workflows/deploy.yml"
|
|
],
|
|
"tasks": {
|
|
"lint": {
|
|
"inputs": [
|
|
"app/**/*.tsx",
|
|
"app/**/*.ts",
|
|
"components/**/*.tsx",
|
|
"components/**/*.ts",
|
|
"lib/**/*.ts",
|
|
"eslint.config.mjs"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"inputs": [
|
|
"app/**/*.tsx",
|
|
"app/**/*.ts",
|
|
"components/**/*.tsx",
|
|
"components/**/*.ts",
|
|
"lib/**/*.ts",
|
|
"tsconfig.json"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"inputs": [
|
|
"app/**/*.tsx",
|
|
"app/**/*.ts",
|
|
"components/**/*.tsx",
|
|
"components/**/*.ts",
|
|
"lib/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"vitest.config.mts"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"check:spell": {
|
|
"inputs": ["content/**/*.{md,mdx}", "app/**/*.tsx", "components/**/*.tsx", "cspell.json"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|