From 921e1a143752679717a73e383d0d90c381cd81f4 Mon Sep 17 00:00:00 2001 From: go0p Date: Tue, 18 Aug 2026 15:01:20 +0800 Subject: [PATCH] fix(ci): install dependencies in the verify job verify-public.mjs imports adm-zip; the verify job previously only checked out the code. --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59e9315..fd00a4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,10 +146,17 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v4 + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '22' + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: Download release entry uses: actions/download-artifact@v4