Skip to content

Commit 5768762

Browse files
authored
chore(renovate): configure node version consistency (#30816)
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Core does not indicate what node version we should be running, which can lead to inconsistent versions between local and workflows. These inconsistencies can lead to workflow failures. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Provides the node version within package - Updates the node version of workflows and package at the same time ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#footer for more information. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
1 parent 3709bba commit 5768762

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

core/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "@ionic/core",
33
"version": "8.7.11",
44
"description": "Base components for Ionic",
5+
"engines": {
6+
"node": "24.x"
7+
},
58
"keywords": [
69
"ionic",
710
"framework",

renovate.json5

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,15 @@
9696
"package.json"
9797
],
9898
enabled: false
99+
},
100+
{
101+
/**
102+
* Group Node version updates into a single PR to update
103+
* the workflows and core package.json simultaneously.
104+
*/
105+
matchDatasources: ["node-version"],
106+
matchPackagePatterns: ["node"],
107+
groupName: "node-version-updates"
99108
}
100109
],
101110
dependencyDashboard: false,

0 commit comments

Comments
 (0)