From f0b290d17c2550ea0e884281ea3ab8557ce933f6 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:47:44 -0400 Subject: [PATCH] ci: add bun install step --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 74b95e3..7e27d35 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -48,6 +48,9 @@ jobs: # 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. + # Install bun + - uses: oven-sh/setup-bun@v2 + - name: install frontend dependencies run: bun install # change this to npm, pnpm or bun depending on which one you use.