chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
Showing only changes of commit dc551f138a - Show all commits

View File

@@ -7,7 +7,10 @@ import * as fs from "fs";
// This allows local integration tests to run with a local database
// CI environments explicitly provide DATABASE_URL in the test step, so skip loading .env.test there
const envTestPath = path.resolve(__dirname, ".env.test");
const isCI = process.env.CI === "true" || process.env.WOODPECKER === "true";
const isCI =
process.env.CI === "true" ||
process.env.CI === "woodpecker" ||
process.env.CI_PIPELINE_EVENT !== undefined;
if (!isCI && fs.existsSync(envTestPath)) {
const result = dotenv.config({ path: envTestPath });