Navigation Menu

Skip to content
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

feat: Add GitHub Actions Reporter #11320

Merged
merged 23 commits into from Mar 30, 2022
Merged

Conversation

ockham
Copy link
Contributor

@ockham ockham commented Apr 20, 2021

Summary

Based on @mariusGundersen's #10741, which is in turn based on @stefanbuck's stefanbuck/jest-matcher#2.

Add a Jest reporter to output a format that will be interpreted by GitHub Actions as annotations -- i.e. any errors reported by Jest will show up in a PR's diff below the offending line. This should make for significantly improved Developer Experience, since developers no longer have to scan CI logs for errors, but instead will be notified of them at the location where they happen.

All credit really goes to @stefanbuck and @mariusGundersen. I've only added a simple test (as was requested by @SimenB over at #10741, which seems to have gone stale) based on SummaryReporter's, ran the reporter through eslint, and made a few minor fixes.

This still needs a bit of tweaking (e.g. of the output format), hence setting the PR to draft status.

Closes #10741

Test plan

Run

yarn test packages/jest-reporters/src/__tests__/GithubActionsReporter.test.js

@facebook-github-bot
Copy link
Contributor

Hi @ockham!

Thank you for your pull request and welcome to our community.

Action Required

In order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you.

Process

In order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA.

Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with CLA signed. The tagging process may take up to 1 hour after signing. Please give it that time before contacting us about it.

If you have received this in error or have any questions, please contact us at cla@fb.com. Thanks!

@stefanbuck
Copy link
Contributor

stefanbuck commented Apr 21, 2021

Thanks for picking this up again. I'm not really familiar with the Jest code base, but from what I can tell this looks good. Just one thing, when running Jest in another CI enviroment than GitHub Actions we might don't want to print such logs. Luckily there is a env variable for that.

GITHUB_ACTIONS Always set to true when GitHub Actions is running the workflow. You can use this variable to differentiate when tests are being run locally or by GitHub Actions.

Just for the recorder / issue watchers, the initial feature request was made in #10309

@ockham
Copy link
Contributor Author

ockham commented Apr 21, 2021

BTW, giving this some real-world testing over at WordPress/gutenberg#31041. Already found a few minor issues through that 😬

@stefanbuck
Copy link
Contributor

Amazing, let me know if I can help.

@ockham
Copy link
Contributor Author

ockham commented Apr 21, 2021

Amazing, let me know if I can help.

Thank you! I think I'll polish the other PR first, and will then carry my modifications back over here 🙂

@ockham
Copy link
Contributor Author

ockham commented Apr 23, 2021

I've merged the real-world PR (WordPress/gutenberg#31041) -- it contains a few screenshots to showcase how the annotations work.

I've carried over a few changes (including the GITHUB_ACTIONS check). I think I'd like to open it for review now -- it probably needs some more polish (and maybe test coverage?), but I'd appreciate some pointers to know what to add 🙂


As for coloring the output: The Jest failure messages clearly include ANSI color codes (see test fixture), so it seems that they get stripped off at a later stage (possibly by GitHub Actions?).

At a closer look, this doesn't seem to be limited to this reporter -- Jest would normally also color its overall test results, but those colors never seem to make it to the GH Actions workflow run console:

image

So I won't be investigating the missing colors anymore for now, since it seems like the problem isn't specific to this reporter (but to how GH Actions process Jest output). (I've Googled a bit and found e.g. #3877 -- indicating that we might try to use the --colors cmd line arg to force them; but that that might also end up being ignored, since that option is passed through to chalk. Elsewhere, I found information on the heuristics that chalk uses to determine whether an output stream supports colors or not -- maybe that's what doesn't work so well with GH Actions.)

@ockham
Copy link
Contributor Author

ockham commented Apr 23, 2021

So I won't be investigating the missing colors anymore for now, since it seems like the problem isn't specific to this reporter (but to how GH Actions process Jest output). (I've Googled a bit and found e.g. #3877 -- indicating that we might try to use the --colors cmd line arg to force them; but that that might also end up being ignored, since that option is passed through to chalk. Elsewhere, I found information on the heuristics that chalk uses to determine whether an output stream supports colors or not -- maybe that's what doesn't work so well with GH Actions.)

chalk/supports-color@79d1303 🤔 Present in chalk >= v7.1.0

vs. https://github.com/facebook/jest/blob/a28f14a9dbd4621eb2e848034cdfdfec28ff9866/package.json#L29

So maybe all that's needed is a version bump for chalk? 🤔

Edit: Ignore 🙄 GH Actions support was added in chalk/color-supports v7.1.0 (rather than chalk itself). And chalk has been using that version of color-supports apparently since v3.0.0

@ockham ockham marked this pull request as ready for review April 26, 2021 19:09
@SimenB
Copy link
Member

SimenB commented Feb 23, 2022

Hey @ockham! I lost track of this. What's the current state? 🙂 Would love to ship this in Jest 28!

From my own look (beyond the boring stuff like rebase, changelog, and signing the CLA) this looks close to complete

_contexts?: Set<Context>,
aggregatedResults?: AggregatedResult,
): void {
if (!process.env.GITHUB_ACTIONS) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should use ci-info instead of manually checking for the env. should make the test cleaner as well as you can use jest.mock

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ockham
Copy link
Contributor Author

ockham commented Feb 25, 2022

Hey @ockham! I lost track of this. What's the current state? 🙂 Would love to ship this in Jest 28!

From my own look (beyond the boring stuff like rebase, changelog, and signing the CLA) this looks close to complete

Hi @SimenB! I'd love if we could get this into Jest 28. Unfortunately, I'm going to be a bit busy next week. Can you tell me when's the deadline for getting this PR merged to make it into v28?

In any case, I'll prod our legal dept to put me on our company CLA list. I'll also try to polish the PR a bit tomorrow if I manage to find some time 😅

@SimenB
Copy link
Member

SimenB commented Feb 25, 2022

Can you tell me when's the deadline for getting this PR merged to make it into v28?

Eh, hard to say. Couple of weeks, probably. But if we make sure not to activate it by default, then we can land it outside of a major and people can use it (via github-actions in config, similar to default?) if they want

@ockham
Copy link
Contributor Author

ockham commented Feb 26, 2022

Can you tell me when's the deadline for getting this PR merged to make it into v28?

Eh, hard to say. Couple of weeks, probably. But if we make sure not to activate it by default, then we can land it outside of a major and people can use it (via github-actions in config, similar to default?) if they want

I've pushed a few more commits to address the feedback I've gotten (thanks!). I'll be out for most of next week, but I should be able to pick up work again around March 7. If that's soon enough (or the PR is good enough as-is 😅), we might still get it merged in time for the major 🤞

@ockham
Copy link
Contributor Author

ockham commented Mar 14, 2022

@SimenB 👋 Just checking in to say that I addressed pretty much all feedback (and had a question or two).

My company's legal team is in touch with Meta's to add me to the corporate CLA, I hope there will be some progress soon.

LMK if there's anything else you need from me! 🙂

@facebook-github-bot
Copy link
Contributor

Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks!

@ockham ockham requested a review from SimenB March 23, 2022 13:50
Copy link
Member

@SimenB SimenB left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(gh forces me to comment here, but the feedback in is the threads 🙂)

@ockham ockham requested a review from SimenB March 28, 2022 16:59
Copy link
Member

@SimenB SimenB left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks!

@SimenB SimenB added this to the Jest 28 milestone Mar 30, 2022
@SimenB SimenB merged commit b9af518 into jestjs:main Mar 30, 2022
@ockham ockham deleted the add/github-actions-reporter branch March 30, 2022 08:13
@stefanbuck
Copy link
Contributor

stefanbuck commented Mar 30, 2022

AMAZING 😍 Thanks @ockham, @mariusGundersen and everyone else involved for putting time and effort to make this happen.

F3n67u pushed a commit to F3n67u/jest that referenced this pull request Apr 1, 2022
Co-authored-by: Marius Gundersen <marius.gundersen@clave.no>
Co-authored-by: Stefan Buck <stefanb@brandwatch.com>
F3n67u added a commit to F3n67u/jest that referenced this pull request Apr 1, 2022
@SimenB
Copy link
Member

SimenB commented Apr 5, 2022

https://github.com/facebook/jest/releases/tag/v28.0.0-alpha.8

@SimenB
Copy link
Member

SimenB commented Apr 5, 2022

that said, no real way of activating it - we should fix that 🙂

@github-actions
Copy link

github-actions bot commented May 6, 2022

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 6, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants