From 881c783c03a524f773ac25abf7dd2bfac559c03b Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Wed, 26 Aug 2026 22:26:45 +0200 Subject: [PATCH] ci: add nodejs v26 to ci --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6b57b00..139d804 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -47,7 +47,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x, 24.x] + node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x, 24.x, 26.x] runs-on: ${{ matrix.os }} concurrency: group: test-${{ matrix.os }}-v${{ matrix.node-version }}-${{ github.ref }} @@ -82,7 +82,7 @@ jobs: if: matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' || matrix.node-version == '16.x' || matrix.node-version == '18.x' - name: Install dependencies run: npm ci - if: matrix.node-version == '20.x' || matrix.node-version == '22.x' || matrix.node-version == '24.x' + if: matrix.node-version == '20.x' || matrix.node-version == '22.x' || matrix.node-version == '24.x' || matrix.node-version == '26.x' - name: Run tests with coverage run: npm run test:coverage -- --ci - uses: codecov/codecov-action@v5