Skip to content

doc: update doc for 驗證 to reflect recent changes #246

doc: update doc for 驗證 to reflect recent changes

doc: update doc for 驗證 to reflect recent changes #246

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- gh-pages
paths-ignore:
- '*.md'
- 'docs/**'
pull_request:
branches-ignore:
- gh-pages
paths-ignore:
- '*.md'
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '18', '20', '22' ]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Prepare
run: python prepare/main.py
- name: Test
run: npm test
- name: Build documentation
run: npm run doc:html