Skip to content

feat(v5): Generator v5 + Level x Rarity power envelope + species nami… #24

feat(v5): Generator v5 + Level x Rarity power envelope + species nami…

feat(v5): Generator v5 + Level x Rarity power envelope + species nami… #24

Workflow file for this run

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