Skip to content

Commit aa5ff3c

Browse files
authored
Disable Turborepo cache for CI related tasks (#329)
* Disable Turborepo cache for CI related tasks Disable cache for all tasks except "build" * Checkout swc-plugin test fixture files with Unix newlines for Windows (#331)
1 parent 2c438c3 commit aa5ff3c

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ensure consistent line endings for test input/output files
2+
# Use LF for all test files to ensure cross-platform consistency
3+
packages/swc-plugin-workflow/transform/tests/**/*.js text eol=lf
4+
packages/swc-plugin-workflow/transform/tests/**/*.stderr text eol=lf

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)