There's no CI workflow that runs on pull requests. The only workflow is publish.yml, which fires on releases. Broken code can be merged without any automated check catching it.
Proposing a pr-gate.yml workflow that runs lint, test, and build as parallel jobs on every PR targeting main. This would have caught the existing lint errors before they landed.
PR: #138
There's no CI workflow that runs on pull requests. The only workflow is
publish.yml, which fires on releases. Broken code can be merged without any automated check catching it.Proposing a
pr-gate.ymlworkflow that runs lint, test, and build as parallel jobs on every PR targeting main. This would have caught the existing lint errors before they landed.PR: #138