From 8ee0be4c918fd8c6b05ca6c5a2e6b1ea4d3a621d Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Thu, 8 May 2025 20:57:58 -0400 Subject: [PATCH] chore(ci): re-enable Node 24 tests for google-cloud-serverless --- scripts/ci-unit-tests.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/ci-unit-tests.ts b/scripts/ci-unit-tests.ts index a86ac0f6358f..2802bde62fa6 100644 --- a/scripts/ci-unit-tests.ts +++ b/scripts/ci-unit-tests.ts @@ -29,8 +29,6 @@ const BROWSER_TEST_PACKAGES = [ // Packages that cannot run in Node 18 const SKIP_NODE_18_PACKAGES = ['@sentry/react-router']; -const SKIP_NODE_24_PACKAGES = ['@sentry/google-cloud-serverless']; - function getAllPackages(): string[] { const { workspaces }: { workspaces: string[] } = JSON.parse( fs.readFileSync(path.join(process.cwd(), 'package.json'), 'utf-8'), @@ -65,10 +63,6 @@ function runTests(): void { if (NODE_VERSION === '18') { SKIP_NODE_18_PACKAGES.forEach(pkg => ignores.add(pkg)); } - - if (NODE_VERSION === '24') { - SKIP_NODE_24_PACKAGES.forEach(pkg => ignores.add(pkg)); - } } if (RUN_AFFECTED) {