Description:
When running a workflow on GitHub Actions with the Windows Server 2025 runner, the build process fails with the following error:

Steps to Reproduce:
- Use the windows-2025 runner in a GitHub Actions workflow.
- Run a build/compile job (e.g., npm run build or another command).
- The process produces a large amount of output logs.
- The job fails with stdout maxBuffer length exceeded.
Expected Behavior:
The workflow should complete successfully even if the build produces a large amount of log output.
Actual Behavior:
The build stops with stdout maxBuffer length exceeded before completing.
Possible Solutions (Optional):
- If using
child_process.exec, increase the maxBuffer option.
- Consider switching to
spawn to handle logs as a stream instead of a buffer.
- Reduce verbosity of log output to avoid hitting the buffer limit.
Description:
When running a workflow on GitHub Actions with the Windows Server 2025 runner, the build process fails with the following error:

Steps to Reproduce:
Expected Behavior:
The workflow should complete successfully even if the build produces a large amount of log output.
Actual Behavior:
The build stops with stdout maxBuffer length exceeded before completing.
Possible Solutions (Optional):
child_process.exec, increase themaxBufferoption.spawnto handle logs as a stream instead of a buffer.