-
Notifications
You must be signed in to change notification settings - Fork 2k
Description
Which project is this feature idea for?
Turborepo
Describe the feature you'd like to request
I would like to be able to visually group logs in CI so its easier to keep track of logs or to expand/collapse
Describe the solution you'd like
I would like to have support for some special logging instructions that are supported in CI solutions, the most popular ones are:
Gitlab:
Requirement: None
start: section_start:${Math.floor(Date.now() / 1000)}:${taskName}\\r\\e[0K${taskName}\r\n
end: section_end:${Math.floor(Date.now() / 1000)}:${taskName}\\r\\e[0K
Teamcity:
start: ##teamcity[blockOpened name='${taskName}']
end: ##teamcity[blockClosed name='${taskName}']
Github Actions:
Requirement: None
start: ::group::${taskName}\r\n
end: ::endgroup::\r\n
Travis:
start: travis_fold:start:${taskName}\r\n
,
end: travis_fold:end:${taskName}\r\n
,
Azure:
start: ##[group]${taskName}\r\n
,
end: ##[endgroup]\r\n
,
Describe alternatives you've considered
None