-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathturbo.json
42 lines (42 loc) · 969 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"lint:fix": {},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"env": ["EDGEDB_SERVER_BIN"]
},
"ci:typecheck": {
"dependsOn": [
"@edgedb/auth-nextjs#typecheck",
"@edgedb/auth-express#typecheck",
"@edgedb/auth-remix#typecheck",
"@edgedb/auth-sveltekit#typecheck",
"@edgedb/ai#typecheck",
"@edgedb/vercel-ai-provider#typecheck"
]
},
"ci:test": {
"dependsOn": [
"build",
"edgedb#test",
"@edgedb/auth-core#test",
"@edgedb/create#test",
"@edgedb/ai#test"
],
"env": ["CI", "EDGEDB_SERVER_BIN"]
},
"ci:integration-test": {
"dependsOn": ["build"],
"env": ["CI", "EDGEDB_SERVER_BIN"]
}
}
}