From d8e4d22d33c7d3e2d156e09910ba8bffedfdcc89 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 15 May 2026 09:31:36 +0100 Subject: [PATCH] ci: run tests on Node 24 and 26 --- .github/workflows/test.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 171ac18..881d62b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,17 +10,14 @@ jobs: - ubuntu-latest - windows-latest - macos-latest - node: - - 20 - - 22 - - 24 + node: [20, 22, 24, 26] runs-on: ${{ matrix.os }} name: ${{ matrix.os }} (Node v${{ matrix.node }}) steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node }}