Skip to content

Commit 601efda

Browse files
committed
chore: update GitHub Actions workflow to use Bun v2
- Upgraded actions/checkout to v4 for improved performance. - Replaced Node.js setup with Bun setup for dependency management. - Modified dependency installation command to use the frozen lockfile option.
1 parent e277f9a commit 601efda

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

16-
- name: Setup Node.js
17-
uses: actions/setup-node@v2
16+
- name: Setup Bun
17+
uses: oven-sh/setup-bun@v2
1818
with:
19-
node-version: '22'
19+
bun-version: latest
2020

2121
- name: Install dependencies
22-
run: bun install
22+
run: bun install --frozen-lockfile
2323

2424
- name: Build project
2525
run: bun run build:prod

0 commit comments

Comments
 (0)