Skip to content

Docs refactor

Docs refactor #1

Workflow file for this run

name: Test Deploy Docs
on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --no-save
working-directory: ./docs
- name: Build website
run: bun run build
working-directory: ./docs