From fbc5f0e746e47733a7c5dbba782c58a45efa0b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Mon, 18 Aug 2025 23:08:51 +0200 Subject: [PATCH] Build: Fix tests on Edge There was a typo in the test command for Edge on Windows - a double `--`. This worked with npm included with Node.js 22.17.1, but started failing with 22.18.0. --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index cccd059d28..d7244782eb 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -98,7 +98,7 @@ jobs: run: npm run build - name: Test - run: npm run test:unit -- -- --headless -b edge -c ${{ matrix.CONFIGS.config }} + run: npm run test:unit -- --headless -b edge -c ${{ matrix.CONFIGS.config }} safari: runs-on: macos-latest