mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:03:24 +00:00
38 lines
764 B
JSON
38 lines
764 B
JSON
{
|
|
"extends": ["//"],
|
|
"pipeline": {
|
|
"build": {
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client2#build",
|
|
"@zitadel/react#build"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client2#build",
|
|
"@zitadel/react#build"
|
|
]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client2#build",
|
|
"@zitadel/react#build"
|
|
]
|
|
},
|
|
"test:watch": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client2#build",
|
|
"@zitadel/react#build"
|
|
]
|
|
}
|
|
}
|
|
}
|