Skip to content

Commit 2bb2243

Browse files
committed
pnpm in GH Action
1 parent 31631ba commit 2bb2243

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tauri-build-app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ jobs:
6262
uses: actions/setup-node@v4
6363
with:
6464
node-version: 'lts/*'
65-
cache: 'npm' # Set this to npm, yarn or pnpm.
66-
cache-dependency-path: './tauri/package-lock.json'
65+
cache: 'pnpm' # Set this to npm, yarn or pnpm.
66+
cache-dependency-path: './tauri/pnpm-lock.json'
6767

6868
- name: Install frontend dependencies
6969
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
70-
run: npm install && cd ../frontend && npm install # Change this to npm, yarn or pnpm.
70+
run: pnpm install && cd ../frontend && pnpm install # Change this to npm, yarn or pnpm.
7171
- name: import Apple Developer Certificate
7272
if: matrix.platform == 'macos-latest'
7373
# Prevents keychain from locking automatically for 3600 seconds.

0 commit comments

Comments
 (0)