dev-manager-tauri/.gitea/workflows/pr-check.yml
lanrtop 8e9c53f182
All checks were successful
Push & PR Check / check (push) Successful in 46s
chore(git-workflow): 炼境自身分支策略 — complexity-gated feat/* + PR CI 覆盖
2026-07-04 09:45:40 +09:00

29 lines
580 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 前端类型检查 + 单元测试push master/feat/* 或向 master 发 PR 时触发)
name: Push & PR Check
on:
push:
branches: [master, 'feat/**']
pull_request:
branches: [master]
jobs:
check:
runs-on: windows
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
- run: pnpm test