n8n/turbo.json
Declan Carroll 67f621519e
ci: Scope RELEASE env to editor-ui turbo task (no-changelog) (#29585)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-05 12:21:45 +00:00

59 lines
1.4 KiB
JSON

{
"globalEnv": ["CI", "BUILD_WITH_COVERAGE"],
"globalPassThroughEnv": ["CODECOV_TOKEN", "COVERAGE_ENABLED", "SENTRY_AUTH_TOKEN"],
"tasks": {
"clean": { "cache": false },
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"n8n-editor-ui#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["RELEASE"]
},
"typecheck": {
"dependsOn": ["^typecheck", "^build"]
},
"format": {},
"format:check": {},
"lint": {
"dependsOn": ["^build", "@n8n/eslint-config#build"]
},
"lint:fix": {},
"lint:styles": {
"dependsOn": ["@n8n/stylelint-config#build"]
},
"lint:styles:fix": {
"dependsOn": ["@n8n/stylelint-config#build"]
},
"test": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"]
},
"n8n-nodes-base#test": {
"inputs": ["$TURBO_DEFAULT$", "../cli/src/public-api/v1/**/*.yml"]
},
"test:unit": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"]
},
"test:integration": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"]
},
"watch": { "cache": false, "persistent": true },
"dev": { "cache": false, "persistent": true },
"install-browsers": {
"cache": true,
"inputs": [".playwright-version"],
"outputs": [".playwright-browsers/**"],
"env": ["PLAYWRIGHT_BROWSERS_PATH"]
},
"test:container:standard": {
"env": ["E2E_TESTS"],
"cache": false
}
}
}