fix: use pnpm install without frozen-lockfile in CI

The lockfile may have minor differences across pnpm versions,
using regular install allows CI to proceed.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
coso
2026-01-12 08:27:53 +08:00
co-authored by Claude Opus 4.5
parent 4b2a9e0873
commit 06b9a070ca
+1 -1
View File
@@ -77,7 +77,7 @@ jobs:
cache-all-crates: true
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
run: pnpm install
- name: Build Tauri app
uses: tauri-apps/tauri-action@v0