chore(ci): run lint and test jobs on master#3198
Merged
Merged
Conversation
Remove the `github.ref_name \!= 'master'` guards from the lint and test jobs so they also run on pushes to master, not only on pull requests.
MartinCupela
approved these changes
May 27, 2026
|
Size Change: +7 B (0%) Total Size: 651 kB 📦 View Changed
ℹ️ View Unchanged
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3198 +/- ##
==========================================
+ Coverage 83.68% 83.73% +0.04%
==========================================
Files 435 435
Lines 13028 13127 +99
Branches 4202 4249 +47
==========================================
+ Hits 10903 10992 +89
- Misses 2125 2135 +10 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
🎯 Goal
Previously the
lintandtestjobs were skipped onmaster(they only ran on pull requests), so anything reachingmasteroutside the normal PR flow had no lint/test validation. Running them onmasterpushes adds a safety net.🛠 Implementation details
Removed the
if: ${{ github.ref_name != 'master' }}condition from thelintandtestjobs in.github/workflows/ci.yml. Both jobs now run on every trigger (pull requests and pushes tomaster). Thebuildjob already ran unconditionally.🎨 UI Changes
N/A — CI configuration only.