We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0c4ef9 commit 77ecc53Copy full SHA for 77ecc53
packages/internal/src/env-schema.ts
@@ -34,7 +34,13 @@ export type ServerEnv = z.infer<typeof serverEnvSchema>
34
35
// CI-only env vars that are NOT in the typed schema
36
// These are injected for SDK tests but should never be accessed via env.* in code
37
-export const ciOnlyEnvVars = ['CODEBUFF_API_KEY'] as const
+export const ciOnlyEnvVars = [
38
+ 'CODEBUFF_API_KEY',
39
+ 'GH_TEST_EMAIL',
40
+ 'GH_TEST_PASSWORD',
41
+ 'GH_TEST_TOTP_SECRET', // TOTP secret for GitHub 2FA automation
42
+ 'CODEBUFF_E2E_URL_FILE', // File-based IPC for e2e login tests
43
+] as const
44
export type CiOnlyEnvVar = (typeof ciOnlyEnvVars)[number]
45
46
// Bun will inject all these values, so we need to reference them individually (no for-loops)
0 commit comments