Merge pull request #2015 from bmad-code-org/ci/quality-on-push-to-main

ci: run quality checks on pushes to main
This commit is contained in:
Alex Verkhovsky 2026-03-15 18:22:48 -06:00 committed by GitHub
commit 0bf6cb3380
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
name: Quality & Validation
# Runs comprehensive quality checks on all PRs:
# Runs comprehensive quality checks on all PRs and pushes to main:
# - Prettier (formatting)
# - ESLint (linting)
# - markdownlint (markdown quality)
@ -10,6 +10,8 @@ name: Quality & Validation
# Keep this workflow aligned with `npm run quality` in `package.json`.
"on":
push:
branches: [main]
pull_request:
branches: ["**"]
workflow_dispatch: