You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this action on Windows, the lint action always succeeds, silently discarding the results. This was observed with the swift-format-official usage, but is likely the case for other tooling as well.
The text was updated successfully, but these errors were encountered:
The solution here is to perform a micro-optimization which will incidentally fix the issue - namely moving away from child_process.execSync. Using child_process.spawnSync is better as it can avoid the shell entire (we can still retain the ability to run a shell if needed, but I suspect it is not necessary). This avoids the need to create a new shell environment and run the subprocess.
When using this action on Windows, the lint action always succeeds, silently discarding the results. This was observed with the swift-format-official usage, but is likely the case for other tooling as well.
The text was updated successfully, but these errors were encountered: