Skip to content

created wiki user docs for this project #1

created wiki user docs for this project

created wiki user docs for this project #1

Workflow file for this run

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