nx 18.1.0-canary.20240210-b1d0294 → 18.1.0-canary.20240214-b625a79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -160,7 +160,8 @@ class CLIOutput {
160
160
  }
161
161
  logCommandOutput(message, taskStatus, output) {
162
162
  let commandOutputWithStatus = this.getCommandWithStatus(message, taskStatus);
163
- if (process.env.GITHUB_ACTIONS) {
163
+ if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
164
+ process.env.GITHUB_ACTIONS) {
164
165
  const icon = this.getStatusIcon(taskStatus);
165
166
  commandOutputWithStatus = `${GH_GROUP_PREFIX}${icon} ${commandOutputWithStatus}`;
166
167
  }
@@ -169,7 +170,8 @@ class CLIOutput {
169
170
  this.addNewline();
170
171
  this.addNewline();
171
172
  this.writeToStdOut(output);
172
- if (process.env.GITHUB_ACTIONS) {
173
+ if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
174
+ process.env.GITHUB_ACTIONS) {
173
175
  this.writeToStdOut(GH_GROUP_SUFFIX);
174
176
  }
175
177
  }