created wiki user docs for this project #1
Workflow file for this run
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: Wiki Docs Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/wiki/**' | |
| - 'scripts/wiki-*.sh' | |
| - '.github/pull_request_template.md' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'docs/wiki/**' | |
| - 'scripts/wiki-*.sh' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Build docs index | |
| run: bash scripts/wiki-build-index.sh | |
| - name: Validate docs | |
| run: bash scripts/wiki-validate.sh | |
| - name: Validate wiki sync dry-run | |
| run: bash scripts/wiki-sync.sh --dry-run |