Skip to content

manifest: refresh .github/workflows/verify.yml size entry #16

manifest: refresh .github/workflows/verify.yml size entry

manifest: refresh .github/workflows/verify.yml size entry #16

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
# 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