From 57a14f67b76210e1a42313a0b976481415e8a33b Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 14 Nov 2022 17:00:53 +0800 Subject: [PATCH] fix(ci): pnpm automatically adds `--frozen-lockfile` in CI environments --- .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 c5e1e93ab..6006b26ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: run: npx json -f package.json -I -e "this.resolutions = {}, this.resolutions.webpack = '^5.0.0', this.devDependencies.webpack = '^5.0.0' " - name: Install webpack 5 - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Run unit tests for webpack 5 run: pnpm run test