manifest: refresh .github/workflows/verify.yml size entry #16
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: Verify | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| # v1.2.3 (audit §15): 普通 PR 只跑快速 verify;正式版本提交(push 到 main) | |
| # 必须跑 verify:release(verify + health-metrics n=3000 + adjacent-rarity-matrix | |
| # + BattlePower calibration + matched-rarity + Similar-BP)。 | |
| - name: Verify (PR fast gate) | |
| if: github.event_name == 'pull_request' | |
| run: npm run verify | |
| - name: Verify Release (main release gate) | |
| if: github.event_name == 'push' | |
| run: npm run verify:release |