Skip to content

Commit 9ff406e

Browse files
committed
chore: update workflow for package management
1 parent cb9f509 commit 9ff406e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424

25+
- name: Install pnpm
26+
run: corepack enable
27+
2528
- name: setup node
2629
uses: actions/setup-node@v4
2730
with:
2831
node-version: lts/*
32+
cache: 'pnpm'
2933

3034
- name: install Rust stable
3135
uses: dtolnay/rust-toolchain@stable
@@ -42,7 +46,7 @@ jobs:
4246
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
4347

4448
- name: install frontend dependencies
45-
run: pnpm install # change this to npm, pnpm or bun depending on which one you use.
49+
run: pnpm install --no-frozen-lockfile # change this to npm, pnpm or bun depending on which one you use.
4650

4751
- uses: tauri-apps/tauri-action@v0
4852
env:

0 commit comments

Comments
 (0)