n8n/turbo.json
n8n-cat-bot[bot] 1e52ffeca0
Some checks are pending
Build: Benchmark Image / build (push) Waiting to run
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.22.3) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.16.0) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
Util: Sync API Docs / sync-public-api (push) Waiting to run
chore: Disable n8n node API-coverage contract test until API team resync (#34333)
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-16 11:23:44 +00:00

90 lines
2.3 KiB
JSON

{
"globalEnv": ["CI", "BUILD_WITH_COVERAGE"],
"globalPassThroughEnv": ["CODECOV_TOKEN", "COVERAGE_ENABLED", "SENTRY_AUTH_TOKEN"],
"boundaries": {
// `~icons/*` is a vite virtual module injected by unplugin-icons (design-system
// icon barrel), not a real package — declare it so boundaries doesn't flag it.
"implicitDependencies": ["~icons"]
},
"tasks": {
"clean": { "cache": false },
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:unchecked": {
"dependsOn": ["^build:unchecked"],
"outputs": ["dist/**"]
},
"n8n-editor-ui#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["RELEASE"]
},
"n8n-editor-ui#build:unchecked": {
"dependsOn": ["^build:unchecked"],
"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"],
"env": ["COVERAGE_ENABLED"]
},
"test:changed": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"],
"cache": false
},
"test:unit": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED"]
},
"test:unit:changed": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"],
"cache": false
},
"test:integration": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED"]
},
"test:integration:changed": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"],
"cache": false
},
"watch": { "cache": false, "persistent": true },
"dev": { "cache": false, "persistent": true },
"install-browsers": {
"cache": true,
"inputs": [".playwright-version"],
"outputs": [".playwright-browsers/**"]
},
"test:container:standard": {
"env": ["E2E_TESTS"],
"cache": false
}
}
}