chore(v6): regenerate presets-v6 with final selection (NTRY=10) for a… #31
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 | |
| # v3 (Simple Outside, Deep Inside): 普通 PR 只跑快速 verify; | |
| # 正式 push 到 main 必须跑 verify:release(verify + diversity 3000 样本)。 | |
| # 旧 v1.2.3 的 health-metrics / adjacent-rarity / BattlePower / matched-rarity / | |
| # Similar-BP 公平性 gate 已移出 release 阻断,仅保留在 npm run diagnostics:legacy。 | |
| - 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 |