From 67fc82256a1e1ec3a6f4d728671346a14e3f2037 Mon Sep 17 00:00:00 2001 From: Shinrai Date: Sat, 1 Aug 2026 22:56:27 -0700 Subject: [PATCH] ci: add build script stub for the coverage-badge job The reusable PR-coverage-badge job runs `npm run build` unconditionally; this package has no build step, so it was missing that script and the job failed on the release PR. Add a no-op `build` (mirrors git-embedded's stopgap). --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0d20360..f13d012 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "access": "public" }, "scripts": { + "build": "echo '✓ no build step (stopgap: the CI coverage-badge job runs `npm run build`)'", "build:ci": "echo '✓ no build step'", "test": "node tests/run-vitest.mjs", "test:watch": "vitest --config .configs/vitest.config.mjs",