From ae25cf635fac937c88fc43106a45431da4f5cd8c Mon Sep 17 00:00:00 2001 From: terwer Date: Thu, 2 Feb 2023 13:23:45 +0800 Subject: [PATCH] fix: CI complains of outdated lockfile but says the lockfile is up to date, see https://github.com/pnpm/pnpm/issues/5144 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e7d2682..307e5841 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,4 +45,4 @@ jobs: ${{ runner.os }}-pnpm-store- - name: Install dependencies and build for production - run: pnpm install && pnpm newVersion && pnpm run build + run: pnpm install --no-frozen-lockfile && pnpm newVersion && pnpm run build