ci: add bun install step

This commit is contained in:
rzmk 2025-04-16 12:47:44 -04:00
parent 34656f74ff
commit f0b290d17c
No known key found for this signature in database

View file

@ -48,6 +48,9 @@ jobs:
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit. # You can remove the one that doesn't apply to your app to speed up the workflow a bit.
# Install bun
- uses: oven-sh/setup-bun@v2
- name: install frontend dependencies - name: install frontend dependencies
run: bun install # change this to npm, pnpm or bun depending on which one you use. run: bun install # change this to npm, pnpm or bun depending on which one you use.