Tags: github/local-action
Tags
Update required Node.js versions (#185) This pull request updates the documentation and configuration to specify supported Node.js versions. The changes ensure clarity about compatibility and enforce constraints on the Node.js versions the tool can run with.
Log action outputs as a table (#180) This PR adds some additional logging at the end of the local action run. If any outputs were created via the `setOutput` method of `@actions/core`, they will be logged in a table following the completion of the run. ```plain ================================================================================ Action Outputs ================================================================================ ┌─────────┬────────────┬─────────────────────────────────────────────┐ │ (index) │ Output │ Value │ ├─────────┼────────────┼─────────────────────────────────────────────┤ │ 0 │ 'time' │ '15:14:47 GMT-0400 (Eastern Daylight Time)' │ │ 1 │ 'someJSON' │ '{"msg":"hello world"}' │ └─────────┴────────────┴─────────────────────────────────────────────┘ ``` If no outputs were set, a relevant message will appear. ```plain ================================================================================ Action Outputs ================================================================================ No outputs were set! ``` The output logic attempts to stringify any value passed to the `setOutput` function.
Expand Unit Test Coverage (#179) This pull request includes several updates and improvements across multiple files, focusing on adding new functionalities, updating dependencies, and enhancing test coverage. The most important changes include adding new mock implementations for testing. No functionality changes have been introduced.
Expand Unit Test Coverage (#179) This pull request includes several updates and improvements across multiple files, focusing on adding new functionalities, updating dependencies, and enhancing test coverage. The most important changes include adding new mock implementations for testing. No functionality changes have been introduced.
PreviousNext