Skip to content

Commit 23e5b1a

Browse files
committed
Update webpack workflow to use bun for dependency installation
1 parent 957fd12 commit 23e5b1a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/webpack.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ jobs:
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424

25+
- name: Setup Bun
26+
uses: oven-sh/setup-bun@v2
27+
28+
- name: Install dependencies
29+
run: bun install
30+
2531
- name: Build
26-
run: |
27-
npm install
28-
npx webpack
32+
run: npx webpack

0 commit comments

Comments
 (0)