Skip to content

Release v2.2.10-0.13.1 #6

Release v2.2.10-0.13.1

Release v2.2.10-0.13.1 #6

Workflow file for this run

name: Test documentation
on:
# If specified, the workflow will be triggered automatically once you push to the `main` branch.
# Replace `main` with your branch’s name
pull_request:
branches:
- dev
# Specify to run a workflow manually from the Actions tab on GitHub
workflow_dispatch:
jobs:
test:
name: Test Docusaurus build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: './docs/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Build Docusaurus site
run: npm run build