From 5ed5c866c290e7f69e38e13e0dce818e82909088 Mon Sep 17 00:00:00 2001 From: PKulkoRaccoonGang Date: Sun, 6 Jul 2025 15:34:30 +0300 Subject: [PATCH] test: Add Node 24 to CI matrix --- .github/workflows/validate.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ed4ddaec06..29d2a5593d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -9,16 +9,20 @@ on: jobs: tests: runs-on: ubuntu-latest + strategy: + matrix: + node: [20, 24] + continue-on-error: ${{ matrix.node == 24 }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version: ${{ matrix.node }} - run: make validate.ci - name: Archive code coverage results uses: actions/upload-artifact@v4 with: - name: code-coverage-report + name: code-coverage-report-node-${{ matrix.node }} path: coverage/*.* coverage: runs-on: ubuntu-latest @@ -28,7 +32,8 @@ jobs: - name: Download code coverage results uses: actions/download-artifact@v4 with: - name: code-coverage-report + pattern: code-coverage-report-node-* + merge-multiple: true - name: Upload coverage uses: codecov/codecov-action@v5 with: