Skip to content

Updated to current state of system #3

Updated to current state of system

Updated to current state of system #3

Workflow file for this run

name: Check Documentation
on:
push:
branches:
- main
- docs
pull_request:
paths:
- docs/**
workflow_dispatch:
jobs:
build-docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup npm
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: ./docs
- name: Build website
run: npm run build
working-directory: ./docs