Skip to content

chore: untrack bun.lock #5

chore: untrack bun.lock

chore: untrack bun.lock #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build static site
run: bun run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: documentation-build
path: .output/public
retention-days: 7