mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
refactor: speed up the pipeline by directly deploying the review app from the build step
This commit is contained in:
17
turbo.json
17
turbo.json
@@ -1,16 +1,17 @@
|
||||
{
|
||||
"globalDependencies": [".gitlab-ci.yml", ".npmrc", ".c8rc.json", ".mocharc.json"],
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["lib/**", "www/**", ".angular/**"],
|
||||
"outputs": ["lib/**"],
|
||||
"cache": true
|
||||
},
|
||||
"deploy": {
|
||||
"dependsOn": ["build", "^deploy"],
|
||||
"dependsOn": ["build"],
|
||||
"cache": false
|
||||
},
|
||||
"docs": {
|
||||
"dependsOn": ["build", "^docs"],
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["docs/**"]
|
||||
},
|
||||
"format": {},
|
||||
@@ -18,14 +19,14 @@
|
||||
"cache": false
|
||||
},
|
||||
"lint": {
|
||||
"dependsOn": ["build"]
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"lint:fix": {
|
||||
"dependsOn": ["build", "^lint:fix"],
|
||||
"dependsOn": ["^build", "^lint:fix"],
|
||||
"cache": false
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["build"],
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["coverage/cobertura-coverage.xml", "coverage/report-junit.xml"]
|
||||
},
|
||||
"test:integration": {
|
||||
@@ -38,10 +39,6 @@
|
||||
},
|
||||
"//#syncpack": {
|
||||
"dependsOn": []
|
||||
},
|
||||
"//#build:docker-workspace": {
|
||||
"dependsOn": ["^build"],
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user