fix: --no-frozen-lockfile for .pnpmfile.cjs

This commit is contained in:
lin onetwo 2023-12-30 02:47:25 +08:00
parent 665aef19c1
commit 00983e38fe

View file

@ -64,7 +64,7 @@ jobs:
languages: javascript
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Make Linux (x64)
run: pnpm run make:linux-x64
@ -137,7 +137,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Make macOS (x64)
run: pnpm run make:mac-x64
@ -213,7 +213,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Add msi to path
run: echo "${env:wix}bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append