ci: Disable turbo cache on test:changed tasks (#31233)

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>
This commit is contained in:
n8n-cat-bot[bot] 2026-05-27 21:21:19 +00:00 committed by GitHub
parent 3facc85e09
commit 2868fb2050
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,12 +39,14 @@
"dependsOn": ["^build", "build"],
"inputs": ["$TURBO_DEFAULT$", "../cli/src/public-api/v1/**/*.yml"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"]
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"],
"cache": false
},
"test:changed": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"],
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"]
"env": ["COVERAGE_ENABLED", "CHANGED_FILES"],
"cache": false
},
"test:unit": {
"dependsOn": ["^build", "build"],