Skip to content

feat(xcp): add XCP master implementation with worker script API #306

feat(xcp): add XCP master implementation with worker script API

feat(xcp): add XCP master implementation with worker script API #306

Workflow file for this run

name: Documentation Build Check
on:
pull_request:
branches: [master]
jobs:
docs-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm install
- name: Build documentation
run: npm run docs:build
- name: Verify build output
run: |
if [ ! -d ".vitepress/dist" ]; then
echo "❌ Documentation build failed - .vitepress/dist directory not found"
exit 1
fi
echo "✅ Documentation build completed successfully"