From 7c9dbfa8dc64b042a95abc53027ff0c5d5daf7cb Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Wed, 4 Feb 2026 07:58:55 +0000 Subject: [PATCH] ci: add Node.js fallback test for whichSync --- .github/workflows/integration-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 498bd3e..61cb9a5 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -74,6 +74,9 @@ jobs: - name: Run unit tests run: npm run test:unit + - name: Run Node.js fallback tests + run: node test/utils/which-node-test.mjs + - name: Run integration tests run: npm run test:integration