Skip to content

Commit

Permalink
ビルドのアクションでpnpmをインストールするよう設定
Browse files Browse the repository at this point in the history
  • Loading branch information
tasuren committed Jun 13, 2024
1 parent 91c79f3 commit a5da789
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand All @@ -48,7 +50,7 @@ jobs:
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

- name: install frontend dependencies
run: pnpm install # change this to npm, pnpm or bun depending on which one you use.
run: pnpm install

- uses: tauri-apps/tauri-action@v0
env:
Expand Down

0 comments on commit a5da789

Please sign in to comment.