mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
6a35812f92
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
89 lines
1.7 KiB
JSON
89 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "stream",
|
|
"globalEnv": ["CI", "COVERAGE_ENABLED"],
|
|
"tasks": {
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"build:backend": {
|
|
"dependsOn": ["n8n#build"]
|
|
},
|
|
"build:frontend": {
|
|
"dependsOn": ["n8n-editor-ui#build"]
|
|
},
|
|
"build:nodes": {
|
|
"dependsOn": ["n8n-nodes-base#build", "@n8n/n8n-nodes-langchain#build"]
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"format": {},
|
|
"format:check": {},
|
|
"lint:backend": {
|
|
"dependsOn": [
|
|
"@n8n/api-types#lint",
|
|
"@n8n/config#lint",
|
|
"@n8n/client-oauth2#lint",
|
|
"@n8n/imap#lint",
|
|
"@n8n/permissions#lint",
|
|
"n8n-workflow#lint",
|
|
"n8n-core#lint",
|
|
"n8n-node-dev#lint",
|
|
"n8n#lint"
|
|
]
|
|
},
|
|
"lint:frontend": {
|
|
"dependsOn": [
|
|
"@n8n/chat#lint",
|
|
"@n8n/codemirror-lang#lint",
|
|
"@n8n/storybook#lint",
|
|
"n8n-cypress#lint",
|
|
"n8n-design-system#lint",
|
|
"n8n-editor-ui#lint"
|
|
]
|
|
},
|
|
"lint:nodes": {
|
|
"dependsOn": ["n8n-nodes-base#lint", "@n8n/n8n-nodes-langchain#lint"]
|
|
},
|
|
"lint": {},
|
|
"lintfix": {},
|
|
"test:backend": {
|
|
"dependsOn": [
|
|
"@n8n/api-types#test",
|
|
"@n8n/config#test",
|
|
"@n8n/client-oauth2#test",
|
|
"@n8n/imap#test",
|
|
"@n8n/permissions#test",
|
|
"n8n-workflow#test",
|
|
"n8n-core#test",
|
|
"n8n#test"
|
|
]
|
|
},
|
|
"test:frontend": {
|
|
"dependsOn": [
|
|
"@n8n/chat#test",
|
|
"@n8n/codemirror-lang#test",
|
|
"n8n-design-system#test",
|
|
"n8n-editor-ui#test"
|
|
]
|
|
},
|
|
"test:nodes": {
|
|
"dependsOn": ["n8n-nodes-base#test", "@n8n/n8n-nodes-langchain#test"]
|
|
},
|
|
"test": {},
|
|
"watch": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|