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