-
-
Notifications
You must be signed in to change notification settings - Fork 13
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: fix set-output #249
fix: fix set-output #249
Conversation
2f7d342
to
ed717ba
Compare
ed717ba
to
54e1e39
Compare
08c2caa
to
8d4a34b
Compare
4c0b788
to
f38513a
Compare
f38513a
to
3bdabfa
Compare
3bdabfa
to
43a35ab
Compare
process.env['INPUT_URL'] = 'ftp://>invalid|url<' | ||
process.env['INPUT_URL'] = 'abc' |
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.
unsure why, but tests with an ftp
url just hanged indefinetively....
package.json
Outdated
"pack": "ncc build", | ||
"single-file": "ncc build", |
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.
yarn pack
is a built in command, so I renamed it to avoid conflicts
@@ -22,11 +22,14 @@ export function graphqlPayloadFor( | |||
): string { | |||
const query = minify(rawQuery) | |||
const minifiedVariables = minify(rawVariables) | |||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment |
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.
I'll open follow up issues for all of these manual overrides. At the moment I just want to make sure the release pipeline works as expected
it('should handle missing input gracefully', async () => { | ||
it.skipWindows('should handle missing input gracefully', async () => { |
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.
see #251 as to why we had to skip on Windows
0fa7a7a
to
e9c8d47
Compare
5e49c0d
to
bfc88eb
Compare
bfc88eb
to
2b3c595
Compare
What
Attempt to fix #247
If you look at the
Checks
tab, we should see noset-output
deprecation warning.How
Quite a bunch of changes:
npm run all
script which generated a newdist/index.js
(file used by GH Actions itself) was not working. The fix was a mix of:cc @rvanderlinden for visibility