cal/turbo.json
Omar López e53648d218
Linting (#2083)
* Runs yarn format

* Update website

* Web lint is failing

* Formatting

* Adds cache for dependency install

* Adds linting reports for GH

* Fixes artifact upload

* Caching tests

* Merge reports on GH actions

* Linting

* Fix prettier plugin conflicts

* Dep fixes

* Moves tailwind to monorepo package (#2091)

* New Crowdin translations by Github Action (#2077)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>

* fix redirection to 404 page on login (#2086)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>

* fix: update contributing (#2084)

Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>

* Formatting

* Update website

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Louis <48682663+louis-27@users.noreply.github.com>
Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
2022-03-09 17:52:48 +00:00

112 lines
2.7 KiB
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"globalDependencies": ["apps/web/.env", "packages/prisma/.env"],
"pipeline": {
"@calcom/prisma#build": {
"dependsOn": ["$DATABASE_URL"],
"outputs": ["zod/**"]
},
"@calcom/prisma#db-deploy": {
"dependsOn": ["$DATABASE_URL"]
},
"@calcom/prisma#db-reset": {
"cache": false
},
"@calcom/prisma#db-seed": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-deploy"]
},
"@calcom/web#build": {
"dependsOn": [
"^build",
"@calcom/prisma#db-deploy",
"$BASE_URL",
"$CALENDSO_ENCRYPTION_KEY",
"$CRON_API_KEY",
"$DAILY_API_KEY",
"$DAILY_SCALE_PLAN",
"$DATABASE_URL",
"$EMAIL_FROM",
"$EMAIL_SERVER_HOST",
"$EMAIL_SERVER_PASSWORD",
"$EMAIL_SERVER_PORT",
"$EMAIL_SERVER_USER",
"$GOOGLE_API_CREDENTIALS",
"$GOOGLE_LOGIN_ENABLED",
"$JWT_SECRET",
"$MS_GRAPH_CLIENT_ID",
"$MS_GRAPH_CLIENT_SECRET",
"$NEXT_PUBLIC_APP_URL",
"$NEXT_PUBLIC_INTERCOM_APP_ID",
"$NEXT_PUBLIC_LICENSE_CONSENT",
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
"$NEXT_PUBLIC_TELEMETRY_KEY",
"$NEXTAUTH_URL",
"$PAYMENT_FEE_FIXED",
"$PAYMENT_FEE_PERCENTAGE",
"$PGSSLMODE",
"$PLAYWRIGHT_SECRET",
"$SAML_ADMINS",
"$SAML_DATABASE_URL",
"$STRIPE_CLIENT_ID",
"$STRIPE_PRIVATE_KEY",
"$STRIPE_WEBHOOK_SECRET",
"$TANDEM_BASE_URL",
"$TANDEM_CLIENT_ID",
"$TANDEM_CLIENT_SECRET",
"$WEBSITE_BASE_URL",
"$ZOOM_CLIENT_ID",
"$ZOOM_CLIENT_SECRET"
],
"outputs": [".next/**"]
},
"@calcom/web#dx": {
"dependsOn": ["@calcom/prisma#dx"]
},
"@calcom/web#start": {},
"@calcom/website#build": {
"dependsOn": ["$WEBSITE_BASE_URL"],
"outputs": [".next/**"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"db-deploy": {},
"db-seed": {},
"deploy": {
"dependsOn": []
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"dx": {
"cache": false
},
"lint": {
"cache": false,
"outputs": []
},
"lint:report": {
"cache": false,
"outputs": ["lint-results"]
},
"start": {},
"test": {
"dependsOn": []
},
"test-e2e": {
"cache": false,
"dependsOn": ["^test", "@calcom/web#build", "@calcom/prisma#db-reset"],
"outputs": ["playwright", "test-results"]
},
"type-check": {
"outputs": []
}
}
}