Skip to content

Replace Node.js setup with Bun in CI and deployment workflows; update… #4

Replace Node.js setup with Bun in CI and deployment workflows; update…

Replace Node.js setup with Bun in CI and deployment workflows; update… #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build site
run: bun run build