mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 19:52:18 +00:00
test: run unit and integration tests
This commit is contained in:
32
turbo.json
32
turbo.json
@@ -2,16 +2,25 @@
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"pipeline": {
|
||||
"generate": {
|
||||
"outputs": ["src/proto/**"],
|
||||
"outputs": [
|
||||
"src/proto/**"
|
||||
],
|
||||
"cache": true
|
||||
},
|
||||
"build": {
|
||||
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
||||
"dependsOn": ["generate", "^build"]
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
".next/**",
|
||||
"!.next/cache/**"
|
||||
],
|
||||
"dependsOn": [
|
||||
"generate",
|
||||
"^build"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"outputs": ["coverage/**"],
|
||||
"dependsOn": []
|
||||
"test": {},
|
||||
"test:watch": {
|
||||
"cache": false
|
||||
},
|
||||
"lint": {},
|
||||
"dev": {
|
||||
@@ -22,6 +31,11 @@
|
||||
"cache": false
|
||||
}
|
||||
},
|
||||
"globalDependencies": ["**/.env.*local"],
|
||||
"globalEnv": ["ZITADEL_API_URL", "ZITADEL_SERVICE_USER_TOKEN"]
|
||||
}
|
||||
"globalDependencies": [
|
||||
"**/.env.*local"
|
||||
],
|
||||
"globalEnv": [
|
||||
"ZITADEL_API_URL",
|
||||
"ZITADEL_SERVICE_USER_TOKEN"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user