Skip to content

Commit 19ebd63

Browse files
committed
ci: install bun
1 parent 8f3421f commit 19ebd63

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build_nightly.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@ jobs:
4949
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
5050
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
5151

52+
- name: install a bun package manager
53+
run: npm install -g bun
54+
5255
- name: install frontend dependencies
53-
run: npm install # change this to npm, pnpm or bun depending on which one you use.
56+
run: bun install # change this to npm, pnpm or bun depending on which one you use.
5457

5558
- uses: tauri-apps/tauri-action@v0
5659
env:

src/layouts/root.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<NuxtRouteAnnouncer />
3-
<div>
3+
<div class="bg-amber">
44
<div>Some default layout content shared across all pages</div>
55
<slot />
66
</div>

0 commit comments

Comments
 (0)