From 33e39bc7ed789e504edd9e1fed3acec1b2bdeb50 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 25 Aug 2026 14:59:52 +0000 Subject: [PATCH] :wrench: Fix backend format check script in CI The backend format check was using 'check-fmt' instead of 'check-fmt:clj', causing CI to always fail on the fmt step. Closes #11358 AI-assisted-by: longcat-2.0 --- scripts/ci | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/ci b/scripts/ci index f78bbd0795..cff93eca3a 100755 --- a/scripts/ci +++ b/scripts/ci @@ -45,24 +45,24 @@ declare -A TEST_CMD=( declare -A FMT_CHECK_CMD=( [frontend]="pnpm run check-fmt:clj && pnpm run check-fmt:js && pnpm run check-fmt:scss" - [backend]="pnpm run check-fmt" + [backend]="pnpm run check-fmt:clj" [common]="pnpm run check-fmt:clj && pnpm run check-fmt:js" [render-wasm]="cargo fmt --check" [exporter]="pnpm run check-fmt:clj" [mcp]="pnpm run fmt:check" [plugins]="pnpm run format:check" - [library]="pnpm run check-fmt" + [library]="pnpm run check-fmt:clj" ) declare -A FMT_FIX_CMD=( [frontend]="pnpm run fmt:clj && pnpm run fmt:js && pnpm run fmt:scss" - [backend]="pnpm run fmt" + [backend]="pnpm run fmt:clj" [common]="pnpm run fmt:clj && pnpm run fmt:js" [render-wasm]="cargo fmt" [exporter]="pnpm run fmt:clj" [mcp]="pnpm run fmt" [plugins]="pnpm run format" - [library]="pnpm run fmt" + [library]="pnpm run fmt:clj" ) declare -A PAREN_REPAIR_CMD=(