完善桌面端交互体验与发布检查

This commit is contained in:
Cheng Zhou
2026-06-30 22:26:34 +08:00
parent 628ff8828b
commit c923f887a0
30 changed files with 2507 additions and 141 deletions
+22 -2
View File
@@ -4,9 +4,16 @@ on:
pull_request:
paths:
- "frontend/**"
- "frontend/scripts/**"
- ".github/workflows/client-quality-gates.yml"
- "docs/branch-governance.md"
- "docs/audits/desktop-release-stabilization-checklist.md"
- "docs/guides/client-release.md"
- "docs/guides/branch-maintenance-sop-zh.md"
- "docs/branch-governance.md"
- "docs/audits/desktop-release-stabilization-checklist.md"
- "docs/guides/client-release.md"
- "docs/guides/branch-maintenance-sop-zh.md"
push:
branches:
- dev
@@ -14,6 +21,7 @@ on:
- release
paths:
- "frontend/**"
- "frontend/scripts/**"
- ".github/workflows/client-quality-gates.yml"
jobs:
@@ -43,6 +51,9 @@ jobs:
- name: Check runtime boundary
run: npm run runtime:check
- name: Check desktop release and security gate
run: npm run desktop:release:check
- name: Type check
run: npm run type-check
@@ -78,8 +89,17 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build macOS application
run: npm run desktop:build -- --bundles app
- name: Check synchronized client version
run: npm run version:check
- name: Check runtime boundary
run: npm run runtime:check
- name: Check desktop release and security gate
run: npm run desktop:release:check
- name: Build unsigned macOS application smoke artifact
run: npm run desktop:build:app
env:
VITE_BUILD_CHANNEL: ${{ github.ref_name }}
VITE_BUILD_COMMIT: ${{ github.sha }}