forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
43 lines (43 loc) · 783 Bytes
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "http://turbo.build/schema.json",
"remoteCache": {
"signature": true
},
"globalEnv": ["CI_OS", "NODE_VERSION"],
"pipeline": {
"wrangler#dev": {
"persistent": true,
"cache": false
},
"miniflare#dev": {
"persistent": true,
"cache": false
},
"@cloudflare/vitest-pool-workers#dev": {
"persistent": true,
"cache": false
},
"build": { "dependsOn": ["^build"] },
"test": {
"dependsOn": ["^build"],
"cache": false
},
"test:watch": {
"cache": false
},
"check:lint": {
"dependsOn": ["^topological"]
},
"check:type": {
"dependsOn": ["^topological"]
},
"topological": {
"dependsOn": ["^topological"]
},
"type:tests": {},
"test:ci": {
"cache": false
},
"//#check:format": { "cache": true }
}
}