Skip to content

fix: upgrade @docusaurus/preset-classic from 3.6.3 to 3.7.0 #101

fix: upgrade @docusaurus/preset-classic from 3.6.3 to 3.7.0

fix: upgrade @docusaurus/preset-classic from 3.6.3 to 3.7.0 #101

name: "📚 Check Docs"
on:
workflow_call: # Enables workflow to be called from another workflow.
push:
paths:
- "documentation/**"
- "!README.*"
defaults:
run:
working-directory: documentation
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: documentation/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build documentation
run: yarn build