Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions scripts/ci-unit-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down Expand Up @@ -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) {
Expand Down
Loading