Skip to content

Migrate to Bun

Migrate to Bun #384

Workflow file for this run

name: Build
on:
push:
branches:
- react-rewrite
pull_request:
branches:
- react-rewrite
jobs:
build:
name: Build
runs-on: ubuntu-24.04
defaults:
run:
working-directory: react/
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Dependencies
run: |
bun install --frozen-lockfile --ignore-scripts
- name: Build Website
run: bun run build