From c9b7e6561b15bfb22bff6e331aa4fad36c6d0a3e Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 22 Jan 2026 11:02:41 +0000 Subject: [PATCH] ci: remove redundant test step from publish workflow Tests already run in CI workflow and are required to pass before merge. Running them again in publish workflow was redundant and would fail anyway due to missing Redis service container. --- .github/workflows/publish.yml | 5 ----- package.json | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4723e18..9bdaa80 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,11 +37,6 @@ jobs: - name: Build run: pnpm build - - name: Run tests - run: pnpm test - env: - CI: true - - name: Create Release Pull Request or Publish id: changesets uses: changesets/action@v1 diff --git a/package.json b/package.json index 402fc0c..917756a 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "test": "pnpm -r run test", "changeset": "changeset", "version": "changeset version", - "release": "pnpm build && pnpm test && changeset publish" + "release": "changeset publish" }, "devDependencies": { "@changesets/cli": "^2.27.0",