-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathturbo.json
More file actions
70 lines (70 loc) · 1.3 KB
/
turbo.json
File metadata and controls
70 lines (70 loc) · 1.3 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "http://turbo.build/schema.json",
"remoteCache": {
"signature": true
},
"globalEnv": ["CI_OS", "NODE_VERSION"],
"globalPassThroughEnv": [
"CI",
"CLOUDFLARE_CONTAINER_REGISTRY",
"E2E_SHARD",
"E2E_SHARD_COUNT",
"DOCKER_HOST",
"LOCAL_TESTS_WITHOUT_DOCKER",
"MINIFLARE_CACHE_DIR",
"NODE_EXTRA_CA_CERTS",
"PWD",
"TEST_REPORT_PATH",
"VSCODE_INSPECTOR_OPTIONS",
"WRANGLER_API_ENVIRONMENT",
"WRANGLER_CACHE_DIR",
"CLOUDFLARED_PATH",
"MINIFLARE_CONTAINER_EGRESS_IMAGE",
"WRANGLER_DOCKER_HOST",
"WRANGLER_LOG_PATH",
"WRANGLER_LOG",
"CLOUDFLARE_API_TOKEN",
"CLOUDFLARE_ACCOUNT_ID"
],
"tasks": {
"dev": {
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["build"]
},
"test:watch": {
"persistent": true,
"cache": false
},
"//#check:lint": {},
"check:type": {
"dependsOn": ["build"]
},
"type:tests": {
"dependsOn": ["build"]
},
"test:ci": {
"dependsOn": ["build"],
"outputLogs": "new-only"
},
"test:e2e": {
"dependsOn": ["build"],
"outputLogs": "new-only",
"env": [
"CLOUDFLARE_ACCOUNT_ID",
"CLOUDFLARE_API_TOKEN",
"E2E_ACCOUNT_WORKERS_DEV_DOMAIN",
"NODE_DEBUG"
]
},
"//#check:format": {
"cache": true
}
}
}