Skip to content

docs: Rich text formatting section #23

docs: Rich text formatting section

docs: Rich text formatting section #23

Workflow file for this run

name: docs build
on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs-build.yml'
workflow_dispatch:
jobs:
docs-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Build docs
run: yarn build