Skip to content

Add github workflows for deploying the docs website #7

Add github workflows for deploying the docs website

Add github workflows for deploying the docs website #7

Workflow file for this run

name: Test docs deployment
on:
pull_request:
branches:
- main
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
working-directory: ./website
- name: Test build website
run: bun build
working-directory: ./website