Skip to content

Commit f1bb3d6

Browse files
committed
ci: add bun setup and install to release workflow
Adds Bun package manager setup and installation steps to the CI release workflow for both main and release jobs, replacing npm with bun for dependency management
1 parent 3147d81 commit f1bb3d6

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci-release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
node-version: '22'
5353
cache: 'npm'
5454

55+
- name: Setup Bun
56+
uses: oven-sh/setup-bun@v2
57+
with:
58+
bun-version: 'latest'
5559
- name: Install dependencies
5660
run: bun install
5761

@@ -76,6 +80,10 @@ jobs:
7680
cache: 'npm'
7781
registry-url: 'https://registry.npmjs.org/'
7882

83+
- name: Setup Bun
84+
uses: oven-sh/setup-bun@v2
85+
with:
86+
bun-version: 'latest'
7987
- name: Install dependencies
8088
run: bun install
8189

0 commit comments

Comments
 (0)