Skip to content

Commit dee7d64

Browse files
committed
Disable Turborepo cache for CI related tasks
Disable cache for all tasks except "build"
1 parent 1e9535f commit dee7d64

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

turbo.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
"outputs": ["dist/**", "build", ".svelte-kit", ".vercel/output"]
88
},
99
"dev": {
10-
"dependsOn": ["^build"]
10+
"dependsOn": ["^build"],
11+
"cache": false
1112
},
1213
"typecheck": {
13-
"dependsOn": ["^build"]
14+
"dependsOn": ["^build"],
15+
"cache": false
1416
},
1517
"test": {
16-
"dependsOn": ["^build"]
18+
"dependsOn": ["^build"],
19+
"cache": false
1720
},
1821
"clean": {
1922
"cache": false

0 commit comments

Comments
 (0)