forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.12 KB
/
turbo.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"globalEnv": ["CI", "COVERAGE_ENABLED"],
"tasks": {
"clean": { "cache": false },
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck", "^build"]
},
"format": {},
"format:check": {},
"lint": {
"dependsOn": ["^build", "@n8n/eslint-config#build"]
},
"lint:fix": {},
"lint:styles": {
"dependsOn": ["@n8n/stylelint-config#build"]
},
"lint:styles:fix": {
"dependsOn": ["@n8n/stylelint-config#build"]
},
"test": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"]
},
"watch": { "cache": false, "persistent": true },
"dev": { "cache": false, "persistent": true },
"build:playwright": {
"dependsOn": ["install-browsers:ci", "build"]
},
"install-browsers:ci": {
"cache": true,
"inputs": ["package.json"],
"outputs": ["ms-playwright-cache/**"],
"env": ["PLAYWRIGHT_BROWSERS_PATH"]
},
"install-browsers:local": {
"cache": false,
"inputs": ["package.json"]
},
"test:container:standard": {
"dependsOn": ["install-browsers:local"],
"env": ["E2E_TESTS"],
"cache": false
}
}
}