Files
langgraphjs/turbo.json
T
Christian Bromann b470748990 fix(ci): make pipeline for effective and secure (#1870)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2026-01-10 19:13:31 -08:00

47 lines
1000 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:internal": {
"dependsOn": ["^build:internal"],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"]
},
"format": {
"dependsOn": ["^format"]
},
"format:check": {
"dependsOn": ["^format:check"]
},
"test": {
"cache": false,
"dependsOn": ["^build:internal", "build:internal"]
},
"test:single": {
"dependsOn": ["^build:internal", "build:internal"]
},
"test:int": {
"dependsOn": ["^build:internal", "build:internal"]
},
"test:integration": {
"dependsOn": ["^build:internal", "build:internal", "test:int"]
},
"clean": {
"dependsOn": ["^clean"]
},
"precommit": {},
"start": {
"cache": false
}
}
}