Skip to content

Commit f4b7440

Browse files
committed
fix: ensure Node.js 20+ is used for Next.js build
1 parent 785cae1 commit f4b7440

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/webpack.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@ jobs:
2424

2525
- name: Setup Bun
2626
uses: oven-sh/setup-bun@v2
27+
with:
28+
bun-version: latest
2729

2830
- name: Install dependencies
2931
run: bun install
3032

3133
- name: Build
32-
run: bun run build
34+
run: bun run build
35+
env:
36+
NODE_VERSION: ${{ matrix.node-version }}

0 commit comments

Comments
 (0)