Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Successful in 3m26s
Build & Deploy / 🏗️ Build (push) Successful in 4m5s
Build & Deploy / 🚀 Deploy (push) Successful in 36s
Build & Deploy / 🧪 Smoke Test (push) Successful in 52s
Build & Deploy / 🛡️ Quality Gates (push) Successful in 1m42s
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / ♿ WCAG (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
53 lines
1.1 KiB
JSON
53 lines
1.1 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": []
|
|
},
|
|
"check:mdx": {
|
|
"inputs": ["content/**/*.{md,mdx}", "scripts/validate-mdx.mjs"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|