From ba03b05a01c8d9dca5939a5012b12906daf6bec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Sandstr=C3=B6m?= Date: Wed, 24 Jun 2026 16:44:52 +0200 Subject: [PATCH] fix(ci): quote-free Windows workflow step name (colon broke YAML parse) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Build step name had a colon-space ('cross-platform: rimraf …') which made GitHub reject the whole workflow ('workflow file issue') and never register workflow_dispatch. Removed the colon so the probe actually runs. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8ce3c503..6a252915 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -24,7 +24,7 @@ jobs: node-version: 22 - name: Install run: npm ci - - name: Build (cross-platform: rimraf + node chmod, no POSIX rm/chmod) + - name: Build (cross-platform — no POSIX rm/chmod) run: npm run build - name: Unit tests run: npm test