From 13e8275bf57f23ab0c6f4ce2902464bb56965ebc Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:16:52 +0100 Subject: [PATCH 1/2] =?UTF-8?q?fix(ci):=20stop=20blocking=20Bun=20?= =?UTF-8?q?=E2=80=94=20it=20is=20tier=201,=20not=20an=20anti-pattern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm-bun-blocker.yml FAILED THE BUILD when a Bun lockfile was present. The owner ruled 2026-08-26 that Bun is the estate's tier-1 JS runtime and package manager, and the corrected policy states that "package.json plus bun.lock are expected, not anti-patterns" (standards#655). So this workflow rejected exactly what the policy now mandates: any repo adopting Bun correctly was failed by CI for doing so. It now rejects npm/pnpm/yarn lockfiles only. Estate-wide this pattern was present in 272 of 273 copies across 34 repos. Also repairs a blanked token from the language purge: the failure message read "Use instead." - the tool name had been substituted with an empty string. 1 file(s) changed. YAML re-parsed after every edit. --- .../vscode-a2ml/.github/workflows/npm-bun-blocker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml b/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml index 03be33e..157c5a9 100644 --- a/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml +++ b/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml @@ -21,10 +21,10 @@ jobs: contents: read steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Block npm/bun + - name: Block npm/pnpm/yarn lockfiles run: | - if [ -f "package-lock.json" ] || [ -f "bun.lockb" ] || [ -f ".npmrc" ]; then - echo "❌ npm/bun artifacts detected. Use Deno instead." + if [ -f "package-lock.json" ] || [ -f "pnpm-lock.yaml" ] || [ -f "yarn.lock" ] || [ -f ".npmrc" ]; then + echo "❌ npm/pnpm/yarn artifacts detected. Use Bun (package.json + bun.lock) instead." exit 1 fi - echo "✅ No npm/bun violations" + echo "✅ No npm/pnpm/yarn violations" From 7c413ac2d34edd8992af6312cbd712856b245f62 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:19:05 +0100 Subject: [PATCH 2/2] Update members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com> Signed-off-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com> --- .../tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml b/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml index 157c5a9..7feec14 100644 --- a/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml +++ b/members/tooling/vscode-a2ml/.github/workflows/npm-bun-blocker.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Block npm/pnpm/yarn lockfiles run: | - if [ -f "package-lock.json" ] || [ -f "pnpm-lock.yaml" ] || [ -f "yarn.lock" ] || [ -f ".npmrc" ]; then + if [ -f "package-lock.json" ] || [ -f "pnpm-lock.yaml" ] || [ -f "yarn.lock" ]; then echo "❌ npm/pnpm/yarn artifacts detected. Use Bun (package.json + bun.lock) instead." exit 1 fi