Files
Cibello-app/turbo.json
T
Sven (AAMOS AI) e96213e907
CI / Typecheck, test & build (push) Failing after 6m12s
ci(turbo): släpp fram REDIS_URL till test-tasken så worker-testet når Redis
2026-08-14 00:16:48 +07:00

30 lines
670 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["brand.config.json", ".env.example", "tsconfig.base.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": []
},
"db:test-setup": {
"dependsOn": [],
"outputs": [],
"cache": false,
"env": ["TEST_DATABASE_URL"]
},
"test": {
"dependsOn": ["^typecheck", "@app/database#db:test-setup"],
"outputs": [],
"env": ["TEST_DATABASE_URL", "REDIS_URL"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}