From ed0dea5d51de6af6fd29996a49a142a9d7e17691 Mon Sep 17 00:00:00 2001 From: DellaBitta Date: Fri, 24 Jul 2026 10:57:07 -0400 Subject: [PATCH] Update Node to 24.0 for send email action --- .github/actions/send-email/action.yml | 2 +- js-sdk-framework-tests/nextjs/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/send-email/action.yml b/.github/actions/send-email/action.yml index d645a6c..2ad8f0e 100644 --- a/.github/actions/send-email/action.yml +++ b/.github/actions/send-email/action.yml @@ -40,5 +40,5 @@ inputs: description: HTML body of the message. required: false runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' diff --git a/js-sdk-framework-tests/nextjs/tsconfig.json b/js-sdk-framework-tests/nextjs/tsconfig.json index 53fde01..0eb3ecf 100644 --- a/js-sdk-framework-tests/nextjs/tsconfig.json +++ b/js-sdk-framework-tests/nextjs/tsconfig.json @@ -12,7 +12,7 @@ "incremental": true, "module": "esnext", "esModuleInterop": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-jsx",