From 4d6922e06a88ecb424190ab439925896b2b5419e Mon Sep 17 00:00:00 2001 From: robonen Date: Mon, 19 May 2025 04:36:39 +0700 Subject: [PATCH] fix: update CI and publish workflows to use correct build and test commands --- .github/workflows/ci.yaml | 2 +- .github/workflows/publish.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a672f6c..f464c17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,4 +32,4 @@ jobs: run: pnpm install --frozen-lockfile - name: Test - run: pnpm all:build && pnpm all:test \ No newline at end of file + run: pnpm build && pnpm test \ No newline at end of file diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 4ff6734..aacb9d5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -32,7 +32,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Build & Test - run: pnpm all:build && pnpm all:test + run: pnpm build && pnpm test - name: Get changed files id: changed-files