Skip to content

Commit

Permalink
Skip validation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
imxeno committed Jul 14, 2024
1 parent acbcc18 commit 743b92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export const env = createEnv({
DATABASE_URL: process.env.DATABASE_URL,
NODE_ENV: process.env.NODE_ENV,
},
skipValidation: !!process.env.SKIP_ENV_VALIDATION,
skipValidation: !!process.env.SKIP_ENV_VALIDATION || !!process.env.CI,
emptyStringAsUndefined: true,
});

0 comments on commit 743b92f

Please sign in to comment.