From d43835f7028ca7e914c0ac0f28993bb0b0a15cd9 Mon Sep 17 00:00:00 2001 From: Joarley Santos Date: Fri, 17 Oct 2025 16:05:11 -0400 Subject: [PATCH] Add Node.js 24 setup and update npm version --- .github/workflows/extract-locales.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/extract-locales.yml b/.github/workflows/extract-locales.yml index c17eac5b6..1708530e0 100644 --- a/.github/workflows/extract-locales.yml +++ b/.github/workflows/extract-locales.yml @@ -18,6 +18,15 @@ jobs: with: fetch-depth: 0 + - name: Use Node.js 24 or superior + uses: actions/setup-node@v4 + with: + node-version: '24' + check-latest: true + + - name: Update npm to v24 + run: npm install -g npm@24 + - name: Install dependencies run: npm ci