refactor: speed up the pipeline by directly deploying the review app from the build step

This commit is contained in:
2023-06-28 11:37:39 +02:00
parent 6a8b3d2fe2
commit f1bc41c4df
16 changed files with 344 additions and 296 deletions

13
frontend/app/turbo.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": ["//"],
"pipeline": {
"build": {
"outputs": ["www/**", ".angular/**"]
},
"test:integration": {
"env": ["BROWSER"],
"dependsOn": ["^build"],
"outputs": ["cypress/videos", "cypress/screenshots", "coverage/integration-report-junit.xml"]
}
}
}