From eb8eeca7f01d7740b85037f324468ea1a6bbd28b Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Mon, 6 Apr 2026 11:11:00 +0530 Subject: [PATCH] ci: enable coverage for node.js 25 --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 312cd6e2610..0bc428d5f3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,8 +63,7 @@ jobs: runs-on: ['ubuntu-latest', 'windows-latest', 'macos-latest'] uses: ./.github/workflows/nodejs.yml with: - # Disable coverage on Node.js 25 until https://github.com/nodejs/node/issues/61971 is resolved. - codecov: ${{ matrix.node-version == '24' && matrix.runs-on == 'ubuntu-latest' }} + codecov: ${{ (matrix.node-version == '24' || matrix.node-version == '25') && matrix.runs-on == 'ubuntu-latest' }} node-version: ${{ matrix.node-version }} runs-on: ${{ matrix.runs-on }} secrets: inherit