From d9dcf1ecc8a1d94b374c28353c437fd075125bd7 Mon Sep 17 00:00:00 2001 From: rnascimento10 Date: Mon, 24 Aug 2026 21:40:00 -0300 Subject: [PATCH] fix: simplify publish workflow - remove lint/typecheck/tests (already in CI) --- .github/workflows/publish.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 46fa3a1..3128cf4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,18 +26,6 @@ jobs: - name: Install dependencies run: npm ci - - name: Run linter - run: npm run lint - - - name: "Run type check: cli" - run: npm -w packages/cli run typecheck - - - name: "Run type check: ui" - run: npm -w packages/ui run typecheck - - - name: Run tests - run: npm test - - name: Build package run: npm run build