feat(xcp): add XCP master implementation with worker script API #306
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |