mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-06-29 01:45:54 +08:00
44cd6c6595
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
50 lines
855 B
YAML
50 lines
855 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
tags-ignore:
|
|
- '**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
frontend:
|
|
name: 前端检查 (TypeScript + Lint + Test)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
|
|
- run: npm ci
|
|
|
|
- name: TypeScript 类型检查
|
|
run: npx tsc -b --noEmit
|
|
|
|
- name: ESLint
|
|
run: npx eslint src/ tests/
|
|
|
|
- name: Vitest 测试
|
|
run: npm test
|
|
|
|
rust:
|
|
name: Rust 检查 (Check + Clippy + Test)
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Cargo Check
|
|
run: cargo check
|
|
|
|
- name: Cargo Clippy
|
|
run: cargo clippy -- -D warnings
|
|
|
|
- name: Cargo Test
|
|
run: cargo test
|