n8n/turbo.json
कारतोफ्फेलस्क्रिप्ट™ 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
ci: Setup biome and pre-commit hooks for formatting (no-changelog) (#10795)
Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
2024-09-17 15:10:22 +03:00

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
}
}
}