mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 16:26:59 +02:00
Some checks failed
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.15.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: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Prepare Docker (coverage) (push) Has been cancelled
Util: Update Node Popularity / approve-and-automerge (push) Has been cancelled
Test: E2E Coverage Weekly / E2E (coverage) (push) Has been cancelled
Test: E2E Coverage Weekly / Aggregate Coverage (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (beta) (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (stable) (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (v1) (push) Has been cancelled
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com> Co-authored-by: Declan Carroll <declan@n8n.io>
68 lines
1.7 KiB
JSON
68 lines
1.7 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"],
|
|
"env": ["COVERAGE_ENABLED"]
|
|
},
|
|
"n8n-nodes-base#test": {
|
|
"inputs": ["$TURBO_DEFAULT$", "../cli/src/public-api/v1/**/*.yml"]
|
|
},
|
|
"n8n-nodes-base#test:changed": {
|
|
"dependsOn": ["^build", "build"],
|
|
"inputs": ["$TURBO_DEFAULT$", "../cli/src/public-api/v1/**/*.yml"],
|
|
"outputs": ["coverage/**", "*.xml"],
|
|
"env": ["COVERAGE_ENABLED", "MERGE_BASE"]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": ["^build", "build"],
|
|
"outputs": ["coverage/**", "*.xml"],
|
|
"env": ["COVERAGE_ENABLED"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["^build", "build"],
|
|
"outputs": ["coverage/**", "*.xml"],
|
|
"env": ["COVERAGE_ENABLED"]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|