fix: marginal 蒸幽韻脣音A類 passed 驗證 silently #239
This file contains 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: 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 |