-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ERR_INVALID_URL_SCHEME Error #119
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again, by re-requesting a review.
Copilot
AI
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 3 out of 5 changed files in this pull request and generated 1 suggestion.
Files not reviewed (2)
- package.json: Language not supported
- tsconfig.base.json: Language not supported
Tip: Copilot code review supports C#, Go, Java, JavaScript, Markdown, Python, Ruby and TypeScript, with more languages coming soon. Learn more
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 3 out of 6 changed files in this pull request and generated no suggestions.
Files not reviewed (3)
- package.json: Language not supported
- tsconfig.base.json: Language not supported
- tsconfig.eslint.json: Language not supported
Comments skipped due to low confidence (1)
src/commands/run.ts:120
- The error message should be 'Could not find the node_modules directory'.
throw new Error('Could not find node_modules directory')
Tip: Turn on automatic Copilot reviews for this repository to get quick feedback on every pull request. Learn more
local-action
was consistently failing with an error similar to the following:This was occurring when quibble was attempting to stub out
@actions/core
. Removing theallowJs
setting intsconfig.base.json
resolves this error.Additionally, the
bin/local-action.js
script that generates the TSX command that is run was causing a similar error when trying to find thenode_modules
path for the called action. This has been resolved with a more OS-independent lookup.