From 9193004908bd04ac0651a5a35163a78fd2e77453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cazhewang=E2=80=9D?= Date: Tue, 12 May 2026 14:45:25 +0800 Subject: [PATCH] fix: docs deploy error --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88bcdce6..ce2b22b6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,9 +10,8 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 9 - run_install: | - - recursive: true - args: [--frozen-lockfile, --strict-peer-dependencies] + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: exec lint run: pnpm run lint @@ -23,9 +22,7 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 9 - run_install: | - - recursive: true - args: [--frozen-lockfile, --strict-peer-dependencies] - + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: exec unit test run: pnpm run test