From ebe54dee00c4cb5b07d1a99039744acfd7dc7c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Fri, 7 Feb 2025 10:24:14 +0100 Subject: [PATCH] ci: update Node.js versions supported and remove legacy step (#1599) --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e5cd2e0..6812192f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,14 +19,12 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [18, 20, 22] + node-version: [18, 19, 20, 21, 22, 23] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - run: npm install -g npm@^8 - if: matrix.node-version == '14.x' - run: npm ci - run: npm test