Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: github/local-action

Tags

v3.2.1

Toggle v3.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3.2

Toggle v3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3

Toggle v3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3.2.0

Toggle v3.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3.1.4

Toggle v3.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3.1

Toggle v3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.

v3.1.3

Toggle v3.1.3's commit message
Bump version

v3.1.2

Toggle v3.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Set path for CJS actions on Windows (#172)

When running `@github/local-action` on CommonJS actions on Windows, the
entrypoint should not include a leading slash. ESM actions however,
appear to require this.

v3.1.1

Toggle v3.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix check for package.json path (#167)

This pull request includes minor version updates and improvements to the
directory traversal logic in the `run` command.

v3.1.0

Toggle v3.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Updated support for pnmp and yarn (#164)

This PR adds additional updates and fixes to better support pnmp and
yarn with `@github/local-action`.