docs:菜单页截图入库(README 预览 + 手册图 1),移除无图占位符并重排图号;CHANGELOG 补 v1.4/v1.4.1 #6
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Lint | |
| run: npm ci && npm run lint | |
| - name: Smoke tests | |
| run: node test/smoke.cjs | |
| - name: Flow tests | |
| run: node test/flow.cjs |