From 3c7c04cab176e9f5fda376bcb72490a3d8bac14c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 01:12:18 +0000 Subject: [PATCH 1/2] Initial plan From 1ab157586686cc28931d7f5fa582815e9e700325 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 01:14:11 +0000 Subject: [PATCH 2/2] ci: disable coverage for Node 25 to work around c8/yargs issue Co-authored-by: brendandburns <5751682+brendandburns@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 21d36aa6c6..106aef8b97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,10 @@ jobs: - run: node version-check.js - run: npm ci - run: npm test + if: matrix.node != '25' + - name: Run tests without coverage (Node 25 - c8/yargs workaround) + run: node --test --test-reporter=spec --import tsx src/*_test.ts + if: matrix.node == '25' - run: npm run lint - run: npm audit --audit-level=critical - run: npm run build-with-tests && npm run test-transpiled