Skip to content

Commit b73af9e

Browse files
committed
chore: update CI workflows to use Bun for package management and build process
1 parent 017fa70 commit b73af9e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/linux-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
CI: ""
2424
run: |
2525
cd web
26-
npm install
27-
REACT_APP_VERSION=$(git describe --tags) npm run build
26+
bun install
27+
REACT_APP_VERSION=$(git describe --tags) bun run build
2828
cd ..
2929
- name: Set up Go
3030
uses: actions/setup-go@v3

.github/workflows/macos-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
CI: ""
2424
run: |
2525
cd web
26-
npm install
27-
REACT_APP_VERSION=$(git describe --tags) npm run build
26+
bun install
27+
REACT_APP_VERSION=$(git describe --tags) bun run build
2828
cd ..
2929
- name: Set up Go
3030
uses: actions/setup-go@v3

.github/workflows/windows-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
CI: ""
2727
run: |
2828
cd web
29-
npm install
30-
REACT_APP_VERSION=$(git describe --tags) npm run build
29+
bun install
30+
REACT_APP_VERSION=$(git describe --tags) bun run build
3131
cd ..
3232
- name: Set up Go
3333
uses: actions/setup-go@v3

0 commit comments

Comments
 (0)