mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
feat(ci): add format check and tests to PR validation pipeline
- Add format:check step (prettier --check, hard fail) - Make lint step a hard fail (remove || echo fallback) - Add test step (soft fail for now — coverage is thin) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
683a4c5331
commit
5b4da8913f
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -567,8 +567,14 @@ jobs:
|
|||
- name: Type check
|
||||
run: pnpm run type-check
|
||||
|
||||
- name: Format check
|
||||
run: pnpm run format:check
|
||||
|
||||
- name: Lint
|
||||
run: pnpm run lint || echo "Lint warnings found"
|
||||
run: pnpm run lint
|
||||
|
||||
- name: Test
|
||||
run: pnpm run test || true
|
||||
|
||||
- name: Security Audit
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue