ci: update actions to latest majors and run tests on PRs - #122
Merged
Conversation
- actions/checkout v4 -> v7, actions/setup-node v4 -> v7, codecov/codecov-action v4 -> v7, pnpm/action-setup v4 -> v6 (Node.js 20 action runtime is deprecated; latest majors run on node24) - enable pull_request trigger on develop.yaml so lint/test gate PRs before merge instead of only after push to develop - run semantic-release dry-run only on push events (PRs do not need it) - add concurrency group to cancel superseded runs
Owner
Author
|
🎉 This PR is included in version 4.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.
Summary
Actions version updates (Node.js 20 runtime deprecation)
Latest majors all run on the node24 action runtime. Compatibility notes:
pull_request_target/workflow_run(not used here)cache: 'pnpm'is unaffectedversioninput unchangeddevelop.yaml: PR-stage tests
pull_requesttrigger (base: develop) — lint/test now gate PRs before merge; this PR itself is the first validation runrelease(semantic-release dry-run) runs only onpusheventsFollow-up (after merge)
Add
tests-resultas a required status check on the develop branch protection (doing it before this merge would block this PR, since the check does not exist on PRs yet).