From 72aafb33c206a1e1b9d38880a61f9620a3cdfc03 Mon Sep 17 00:00:00 2001 From: rnascimento10 Date: Mon, 24 Aug 2026 21:15:25 -0300 Subject: [PATCH] fix: quote step names with colons in publish workflow --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 69cdc1c..46fa3a1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,10 +29,10 @@ jobs: - name: Run linter run: npm run lint - - name: Run type check: cli + - name: "Run type check: cli" run: npm -w packages/cli run typecheck - - name: Run type check: ui + - name: "Run type check: ui" run: npm -w packages/ui run typecheck - name: Run tests