perf(ci): one Code Quality run per commit, not two - #770
Merged
Conversation
Contributor
Quality Report — ConductionNL/stackiq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| build | ✅ | ||||
| check-manifest | ✅ | ||||
| check-vue-demi | ✅ | ||||
| test-l10n | ✅ | ||||
| format | ✅ | ||||
| check-schema-l10n | ✅ | ||||
| check-l10n-js | ✅ | ||||
| composer | ✅ | ✅ 130/130 | |||
| npm | ✅ | ✅ 721/721 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| PHPUnit | ✅ | ||||
| Newman | ⏭️ | ||||
| Playwright | ✅ | ||||
| Hydra gates | ✅ |
Quality workflow — 2026-08-27 19:36 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A push to a branch with an open PR ran the same 34 jobs twice on the same
commit.
concurrencycannot deduplicate them: the group is suffixed by eventname deliberately (ConductionNL/.github#540 — a default-branch push carries
jobs a PR run does not, and a
workflow_dispatchmust not be cancellable bythe standing release PR), so
pushandpull_requestsit in different lanesby design and both run to completion.
Measured, fleet-wide, 2026-08-25 → 27
The suite is not slow. Its longest job is 16 minutes. ~96% of the wall clock is
queueing, and duplicate runs are the single largest contributor.
What changes
on.push.brancheskeeps only the default branches this repo already listed anddrops the feature-branch globs.
pull_requestis untouched and still coversevery one of those branches on
[opened, reopened, synchronize], so everycommit going anywhere is still fully checked — once.
No branch loses its floor
merge-hygiene.ymlruns on'**'— every branch anyone pushes, no prefix listto forget — and it is the check
developmentactually requires. That is thesmoke alarm; Code Quality is the fire brigade and belongs on the PR.
The default branches stay: their push runs are not duplicates, they are the only
carrier of Coverage Baseline Check, SBOM and Features Extract, none of which run
on a
pull_requestevent.Verification
Both versions of every one of the 21 files were parsed with PyYAML and compared
key by key:
name,concurrency,permissions,jobsandon.pull_requestare identical, and the new
push.branchesis a strict subset of the old. Theonly structural change is the removal of the glob entries.