From 7438e1f6f0c9185747adc3ff31da840693f16737 Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 29 May 2026 20:12:58 +0800 Subject: [PATCH 1/2] chore: build before stage publish --- .github/workflows/release.yml | 3 +++ package.json | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b620f5d..b9fa7db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,5 +33,8 @@ jobs: - name: Install Dependencies run: pnpm i + - name: Build Packages + run: pnpm build + - name: Publish run: pnpm stage publish --no-git-checks diff --git a/package.json b/package.json index b027d14..49ec980 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "lint": "rslint", "lint:write": "rslint --fix", "prebundle": "node ./bin.js", - "prepare": "rslib", "bump": "npx bumpp", "test": "rstest" }, From 12ef4186cf91909d9eba5fff3b6e16a2d954cbe0 Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 30 May 2026 08:34:10 +0800 Subject: [PATCH 2/2] chore: build before CI tests --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75bcbb9..416b7f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,5 +37,8 @@ jobs: - name: Run lint run: pnpm lint + - name: Build Packages + run: pnpm build + - name: Run tests run: pnpm test