From 2d3c6943e0efd5d884e78d33ab37b50a153c0808 Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 3 Apr 2026 02:11:37 +0200 Subject: [PATCH] chore: use pnpm in gh action --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8fc1eb0..ef55aca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,9 @@ jobs: with: fetch-depth: 0 + - name: Set pnpm + uses: pnpm/action-setup + - name: Set node uses: actions/setup-node@v6 with: @@ -25,6 +28,6 @@ jobs: env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - run: npm ci - - run: npm test + - run: pnpm install + - run: pnpm build - run: npm publish --ignore-scripts