setup-cpp
Version:
Install all the tools required for building and testing C++/C projects.
31 lines (30 loc) • 626 B
JSON
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["OS", "RUNNER_OS", "NODE_ENV"],
"cacheDir": ".cache/turbo",
"tasks": {
"build": {
"dependsOn": ["^build"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint.tsc": {
"dependsOn": ["build", "^lint.tsc", "lint.tsc.test"]
},
"lint.tsc.test": {
"dependsOn": ["^lint.tsc.test"]
},
"lint.eslint": {
"dependsOn": ["^lint.eslint"]
},
"lint": {
"dependsOn": ["lint.tsc", "lint.eslint"]
},
"test": {
"dependsOn": ["build", "^test"]
}
},
"ui": "stream"
}