We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running graphql-inspector-github on v1.27.0 I get the following error:
graphql-inspector-github
> ./node_modules/.bin/graphql-inspector-github (node:39191) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'setFailed' of undefined at /home/adam/git/frontend/node_modules/@graphql-inspector/actions/dist/index.js:7:20
From poking around in dist/index.js changing:
dist/index.js
core_1.default.setFailed(e.message || e);
to
core_1.setFailed(e.message || e);
Makes it move forward, a similar change in run.js gets me further. It seems like something is broken in the TS -> JS build around the default import.
run.js
Reverting to 1.25.0 works for me. I tried both Node 12 and Node 13, locally and in GitHub actions.
The text was updated successfully, but these errors were encountered:
#1372 Should fix it
Sorry, something went wrong.
v1.30.1
Let me know if it's still an issue
Couldn't be more specific than "the answer is in this 25k line PR".
LOL.
No branches or pull requests
When running
graphql-inspector-github
on v1.27.0 I get the following error:From poking around in
dist/index.js
changing:to
Makes it move forward, a similar change in
run.js
gets me further. It seems like something is broken in the TS -> JS build around the default import.Reverting to 1.25.0 works for me. I tried both Node 12 and Node 13, locally and in GitHub actions.
The text was updated successfully, but these errors were encountered: