chore: update nodejs on github ci - #3112
Open
JuliaMV wants to merge 11 commits into
Open
Conversation
|
Generated by: track-bundle-size
new sizes (raw)To set the sizes as a new baseline, you can copy/paste next content to the {
"version": "6.5.1",
"timestamp": "2026-08-14",
"sizes": {
"templateApp": {
"css": 260491,
"js": 446786
},
"@epam/app": {
"css": 726350,
"js": 4944157
},
"@epam/electric": {
"css": 2289,
"js": 2884
},
"@epam/promo": {
"css": 47757,
"js": 9146
},
"@epam/uui-extra": {
"css": 0,
"js": 213
},
"@epam/loveship": {
"css": 55341,
"js": 43228
},
"@epam/uui-components": {
"css": 25164,
"js": 244203
},
"@epam/uui-core": {
"css": 0,
"js": 338043
},
"@epam/uui-db": {
"css": 0,
"js": 42718
},
"@epam/uui-docs": {
"css": 2157,
"js": 197256
},
"@epam/uui-editor": {
"css": 12958,
"js": 164496
},
"@epam/uui-timeline": {
"css": 2197,
"js": 75103
},
"@epam/uui": {
"css": 222102,
"js": 352423
}
}
}Generated by: generate-components-api Total amount of exported types/props without JSDoc comments
|
JuliaMV
force-pushed
the
chore/update-nodejs-for-ci
branch
from
August 14, 2026 09:36
0c7600c to
3868d55
Compare
…e docker actions to Node.js 24 runtime
…th track-merge-target disabled
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.
Description:
Update CI: Node.js 22, modern actions, replace GitVersion
Changes
Node.js upgrade
Docker actions — Node.js 24 runtime
GitVersion replaced with git commands
GitVersion 6.x was hanging on this repo (246 tags cause full graph traversal on startup, ~4 min per run). Replaced with lightweight git commands:
SHORT_SHA=$(echo "${GITHUB_SHA}" | cut -c1-7)
LATEST_TAG=$(git tag --sort=-version:refname | grep -E '^v[0-9]+.[0-9]+.[0-9]+$' | head -1)
MAJOR=$(echo $LATEST_TAG | sed 's/^v//' | cut -d. -f1)
MINOR=$(echo $LATEST_TAG | sed 's/^v//' | cut -d. -f2)
Output is equivalent: shortSha, major, minor used for Docker image tag and Helm chart version. GitVersion.yml removed.
Cleanup