Skip to content

feat(web): clarify ApiGear positioning across landing page and docs #59

feat(web): clarify ApiGear positioning across landing page and docs

feat(web): clarify ApiGear positioning across landing page and docs #59

name: Test docusaurus build
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
submodules: 'true'
- name: install dependencies
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: mdx check (served content only)
run: |
set -e
for dir in docs blog src/pages \
template-docs/template-unreal/docs/docs \
template-docs/template-cpp17/docs/docs \
template-docs/template-cpp14/docs/docs \
template-docs/template-qt6/docs/docs \
template-docs/template-python/docs/docs \
template-docs/template-java/docs/docs; do
echo "=== $dir ==="
npx --yes docusaurus-mdx-checker --cwd "$dir"
done
- run: npm ci
- run: npm run build