Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Docs Build

on:
pull_request:
paths:
- 'src/docs/**'
- '.github/workflows/docs-build.yml'
Comment thread
wwb1942 marked this conversation as resolved.
Outdated

permissions:
contents: read
Comment thread
wwb1942 marked this conversation as resolved.
Outdated

jobs:
build-docs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build docs
run: npm run build
working-directory: src/docs
Loading