Comment out test/lint steps in composer-update workflow#293
Merged
Conversation
Contributor
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
Co-authored-by: nielsdrost7 <47660417+nielsdrost7@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update GitHub Actions for testing and linting setup
Comment out test/lint steps in composer-update workflow
Dec 29, 2025
Contributor
There was a problem hiding this comment.
Pull request overview
This PR disables test and lint steps in the automated Composer dependency update workflow, isolating these quality checks to their dedicated manual workflows per feedback from #282. The workflow will continue to run security audits and create PRs for dependency updates, but without executing tests or code quality checks.
Key Changes:
- Commented out PHPUnit test execution, replacing
--testsuite=Unitwith--group=smokefor future use - Commented out PHPStan static analysis step
- Commented out Laravel Pint code formatting step
- Updated PR template to reflect disabled checks with strikethrough formatting
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.
Per review feedback on #282, test/lint tools need to be isolated to their dedicated workflows until stable. The composer-update workflow was running phpunit, phpstan, and pint on every dependency update.
Changes
Commented out test execution in
.github/workflows/composer-update.yml--group=smokefor future useCommented out phpstan and pint steps
Updated PR template
Workflow Scope
Test/lint tools now only run in dedicated manual workflows:
phpunit.yml- Testsphpstan.yml- Static analysispint.yml- Code formattingOther workflows (
quickstart.yml,release.yml,yarn-update.yml,crowdin-sync.yml) remain unchanged.💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.