I followed the repository instructions: ``` npm i -g @github/local-action local-action --help ``` But this results in the following error: ``` Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/redacted.nvm/versions/node/v20.19.2/lib/node_modules/@github/local-action/src/index.ts--' ``` This seems to stem from: https://github.com/github/local-action/blob/main/bin/local-action.js#L58 Changing that line to: ``` command += ` -- --help` ``` (extra space) Fixed the issue.