Skip to content

WIP: Add: started working on testing GHA CI workflow #32

WIP: Add: started working on testing GHA CI workflow

WIP: Add: started working on testing GHA CI workflow #32

Workflow file for this run

name: Build documentation (no publish)
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
deploy-docs:
name: Build documentation (no publish)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
path: docs-site
node-version: 18
cache: npm
cache-dependency-path: docs-site/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: docs-site
- name: Build website
run: npm run build
working-directory: docs-site