{"id":14985910,"url":"https://github.com/artiomtr/jest-coverage-report-action","last_synced_at":"2025-05-15T18:03:14.248Z","repository":{"id":37945404,"uuid":"328358586","full_name":"ArtiomTr/jest-coverage-report-action","owner":"ArtiomTr","description":"Track your code coverage in every pull request.","archived":false,"fork":false,"pushed_at":"2024-09-09T19:15:44.000Z","size":15362,"stargazers_count":526,"open_issues_count":45,"forks_count":149,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-12T01:56:16.438Z","etag":null,"topics":["action","actions","annotations","coverage-reporters","github-action","github-actions","github-actions-ci","jest","threshold"],"latest_commit_sha":null,"homepage":"https://www.covbot.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArtiomTr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["ArtiomTr"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2021-01-10T10:41:26.000Z","updated_at":"2025-04-11T16:42:02.000Z","dependencies_parsed_at":"2023-02-19T20:45:43.814Z","dependency_job_id":"85d5909f-c652-4f07-a7a1-5ec6b59a49ae","html_url":"https://github.com/ArtiomTr/jest-coverage-report-action","commit_stats":{"total_commits":293,"total_committers":46,"mean_commits":6.369565217391305,"dds":0.5290102389078498,"last_synced_commit":"262a7bb0b20c4d1d6b6b026af0f008f78da72788"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomTr%2Fjest-coverage-report-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomTr%2Fjest-coverage-report-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomTr%2Fjest-coverage-report-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomTr%2Fjest-coverage-report-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArtiomTr","download_url":"https://codeload.github.com/ArtiomTr/jest-coverage-report-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248505864,"owners_count":21115354,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","actions","annotations","coverage-reporters","github-action","github-actions","github-actions-ci","jest","threshold"],"created_at":"2024-09-24T14:11:55.096Z","updated_at":"2025-04-12T01:56:23.664Z","avatar_url":"https://github.com/ArtiomTr.png","language":"TypeScript","funding_links":["https://github.com/sponsors/ArtiomTr"],"categories":[],"sub_categories":[],"readme":"# jest coverage report 🧪\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"PR Comment example\" width=\"540\" src=\"./img/Github-comment-screenshot.jpg\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    A GitHub action that reports about your code coverage in every pull request.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action\"\u003e\u003cimg alt=\"MIT License\" src=\"https://img.shields.io/github/license/artiomtr/jest-coverage-report-action\"\u003e\u003c/img\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/issues\"\u003e\u003cimg alt=\"Issues\" src=\"https://img.shields.io/github/issues/artiomtr/jest-coverage-report-action\"\u003e\u003c/img\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nThis action uses [Jest](https://github.com/facebook/jest) to extract code coverage, and comments it on pull request. Inspired by [Size-limit action](https://github.com/andresz1/size-limit-action/). Features:\n\n-   **Reporting** code coverage on each pull request. 📃\n-   **Rejecting** pull request, if coverage is under threshold. ❌\n-   **Comparing** coverage with base branch. 🔍\n-   Showing spoiler in the comment for all **new covered files**. 🆕\n-   Showing spoiler in the comment for all files, in which **coverage was reduced**. 🔻\n-   Failed tests \u0026 uncovered line **annotations** 📢\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"PR Comment example\" width=\"540\" src=\"./img/Rejected-PR-screenshot.jpg\"\u003e\n\u003c/p\u003e\n\n## Usage\n\n1. Install and configure [Jest](https://github.com/facebook/jest).\n2. Create new action inside `.github/workflows`:\n\n**Minimal configuration**\n\n```yml\nname: 'coverage'\non:\n    pull_request:\n        branches:\n            - master\n            - main\njobs:\n    coverage:\n        runs-on: ubuntu-latest\n        steps:\n            - uses: actions/checkout@v3\n            - uses: ArtiomTr/jest-coverage-report-action@v2\n```\n\n3. Pay attention to the action parameters. You can specify custom [threshold](#specify-threshold) or [test script](#customizing-test-script)\n4. That's it!\n\n## Forks with no write permission\n\nIf you're seeing this error in your action's console:\n\n```\nHttpError: Resource not accessible by integration\n    at /home/runner/work/_actions/ArtiomTr/jest-coverage-report-action/v2/dist/index.js:8:323774\n    at processTicsAndRejections (node:internal/process/task_queues:96:5)\n    at async /home/runner/work/_actions/ArtiomTr/jest-coverage-report-action/v2/dist/index.js:64:2535\n    at async Ie (/home/runner/work/_actions/ArtiomTr/jest-coverage-report-action/v2/dist/index.js:63:156)\n    at async S_ (/home/runner/work/_actions/ArtiomTr/jest-coverage-report-action/v2/dist/index.js:64:2294)\n```\n\nIt means that action is running with low privileges. By default, `pull_request` event doesn't have any write permissions, when PR is coming from fork. To fix that, change trigger action to `pull_request_target`:\n\n```yml\nname: 'coverage'\non:\n    pull_request_target:\n        branches:\n            - master\n            - main\njobs:\n    coverage:\n        runs-on: ubuntu-latest\n        steps:\n            - uses: actions/checkout@v3\n            - uses: ArtiomTr/jest-coverage-report-action@v2\n```\n\n\u003e **Warning**\n\u003e\n\u003e This brings worse DX - you can test action only when it is merged into your main branch. **Any changes to the workflow file will be taken only after merging them to the main branch**\n\n## Custom token\n\nBy default, this action takes `github.token` variable to publish reports on your PR. You can overwrite this property by specifying:\n\n```yml\nwith:\n    github-token: ${{ secrets.SECRET_TOKEN }}\n```\n\n## Specify threshold\n\nThis action automatically suports jest's [`coverageThreshold`](https://jestjs.io/docs/configuration#coveragethreshold-object) property.\nJust add into your `jest.config.js` file:\n\n```js\nmodule.exports = {\n    coverageThreshold: {\n        global: {\n            lines: 80,\n        },\n    },\n};\n```\n\n## Custom working directory\n\nIf you want to run this action in custom directory, specify `working-directory`:\n\n```yml\nwith:\n    working-directory: \u003cdir\u003e\n```\n\n## Customizing test script\n\nThis action automatically adds necessary flags to your test script. The default script is:\n\n```\nnpx jest\n```\n\nSo you don't need to specify additional flags - action will handle them\nautomatically. So, after adding necessary flags, action will run this command:\n\n```\nnpx jest --ci --json --coverage --testLocationInResults --outputFile=report.json\n```\n\nBut you do not need to specify these flags manually. Also, you can use different package manager, `yarn` for example:\n\n```yml\nwith:\n    test-script: yarn jest\n```\n\nOr, if you would like to run a script from your `package.json`:\n\n```yml\nwith:\n    test-script: npm test\n```\n\n## Usage with `yarn` `pnpm`, or `bun`\n\nBy default, this action will install your dependencies using `npm`. If you are using `yarn`, `pnpm`, or `bun`, you can specify it in the `package-manager` option:\n\n```yml\nwith:\n    package-manager: yarn\n```\n\nor\n\n```yml\nwith:\n    package-manager: pnpm\n```\n\nor\n\n```yml\nwith:\n    package-manager: bun\n```\n\n## Use existing test report(s)\n\nTo bypass running unit tests, you can pass the filepath to the current report.json\n\n```yml\nwith:\n    coverage-file: ./coverage/report.json\n    base-coverage-file: ./coverage/master/report.json\n```\n\n-   `coverage-file` is the filepath to the JSON coverage report for the current pull request.\n-   `base-coverage-file` is the filepath to the JSON coverage report from the branch your pull request is merging into.\n\nFor example, you can save every test run to an artifact and then download and reference them here.\n\n## Opt-out coverage comparison features\n\nYou can opt-out coverage comparison features to speed-up action. To achieve this, firstly, manually collect coverage to `report.json` file. Then, specify these options for the action:\n\n```yml\nwith:\n    coverage-file: report.json\n    base-coverage-file: report.json\n```\n\n## Skipping steps\n\n\u003e Note: this option affects only coverage for the \"head\" branch. For skipping steps of \"base\" branch, see [`base-coverage-file`](#use-existing-test-reports) option.\n\nBy default, this action will install dependencies and run the tests for you, generating the coverage report. Alternatively, you can skip these steps using the `skip-step` option.\n\n```yml\nwith:\n    skip-step: all\n```\n\nAccepted values are:\n\n-   `none` (default) - all steps will be run\n-   `install` - skip installing dependencies\n-   `all` - skip installing dependencies _and_ running the test script\n\n## Change annotations\n\nTo change annotations, you have to set the annotations option as shown below:\n\n```yml\nwith:\n    annotations: none\n```\n\nAccepted values are:\n\n-   `all` (default) - Will annotate sections of your code that failed tests or test did not cover\n-   `none` - Turns off annotations\n-   `coverage` - Will annotate those sections of your code that test did not cover. Limited to changed lines when used on a Pull Request\n-   `failed-tests` - Will annotate those sections of your code that failed test\n\n## Outputs\n\nBy default, action attaches comment to a pull request or commit. However, if you want to use other action for publishing report, you can specify `output: report-markdown`:\n\n```yaml\n- uses: ArtiomTr/jest-coverage-report-action@v2\n    # give the id for the step, to access outputs in another step.\n    id: coverage\n    with:\n        # tell to the action to not attach comment.\n        output: report-markdown\n- uses: marocchino/sticky-pull-request-comment@v2\n    with:\n        # pass output from the previous step by id.\n        message: ${{ steps.coverage.outputs.report }}\n```\n\nAlso, you can use this data on other platforms. For instance, you can send report to your [Slack](https://github.com/slackapi/slack-github-action) or [Jira](https://github.com/atlassian/gajira-comment).\n\n\u003e **Note**: Working examples of integrations with different platforms are much appreciated! Feel free to open a [PR](https://github.com/ArtiomTr/jest-coverage-report-action/pulls).\n\nAvailable options are:\n* `comment` - Attach comment to PR or commit, depending on event type, which triggered an action.\n* `report-markdown` - Generate output \"report\", with report contents in markdown format.\n\nAlso, you can combine these options:\n\n```yml\nwith:\n    # This will attach comment to a PR and generate markdown output.\n    output: comment, report-markdown\n```\n\n## Pull Request Number\n\nIf you are using the `push` event to trigger this action, by default it does not know which PR to comment on or the base branch of the PR to compare code coverage with.\n\nYou can pass the `prnumber` to the action so that coverage change can be run and comments will be updated on each push, instead of creating a new comment with each run of the action.\n\nYou can find the PR number with a number of methods, the [jwalton/gh-find-current-pr](https://github.com/jwalton/gh-find-current-pr) action makes it easy:\n\n```yml\nname: 'coverage'\non:\n    push:\n        branches:\n            - master\n            - main\njobs:\n    coverage:\n        permissions:\n            checks: write\n            pull-requests: write\n            contents: write\n        runs-on: ubuntu-latest\n        steps:\n            - uses: actions/checkout@v1\n            - uses: jwalton/gh-find-current-pr@v1\n                id: findPr\n            - uses: ArtiomTr/jest-coverage-report-action@v2\n                with:\n                   prnumber: ${{ steps.findPr.outputs.number }}\n```\n\n## Customizing report title\n\nIf you're running this action multiple times (for instance, when dealing with monorepos), you'll need to distinguish reports from different runs. To do so, you can use the `custom-title` property:\n\n```yaml\nwith:\n    custom-title: Coverage report for backend\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\nJest Coverage Report action is made with \u003c3 thanks to these wonderful people\n([emoji key ✨](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/ArtiomTr\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/44021713?v=4?s=100\" width=\"100px;\" alt=\"Artiom Tretjakovas\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eArtiom Tretjakovas\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=ArtiomTr\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=ArtiomTr\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/pulls?q=is%3Apr+reviewed-by%3AArtiomTr\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"#maintenance-ArtiomTr\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"#content-ArtiomTr\" title=\"Content\"\u003e🖋\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/taschetto\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/5279182?v=4?s=100\" width=\"100px;\" alt=\"Guilherme Taschetto\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGuilherme Taschetto\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=taschetto\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=taschetto\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://adamtuttle.codes\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/46990?v=4?s=100\" width=\"100px;\" alt=\"Adam Tuttle\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdam Tuttle\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=atuttle\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/dadayama\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/6773164?v=4?s=100\" width=\"100px;\" alt=\"dadayama\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003edadayama\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=dadayama\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://bluelovers.net\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/167966?v=4?s=100\" width=\"100px;\" alt=\"bluelovers\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ebluelovers\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=bluelovers\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/gdelahodde-masteos\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/83218823?v=4?s=100\" width=\"100px;\" alt=\"gdelahodde-masteos\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003egdelahodde-masteos\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=gdelahodde-masteos\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=gdelahodde-masteos\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/jlim9333\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/85653304?v=4?s=100\" width=\"100px;\" alt=\"jlim9333\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ejlim9333\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=jlim9333\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://blog.mozmonkey.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/35894?v=4?s=100\" width=\"100px;\" alt=\"Jeremy Gillick\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJeremy Gillick\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=jgillick\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=jgillick\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://zajo.io\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1835434?v=4?s=100\" width=\"100px;\" alt=\"Matej Zajo Kralik\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMatej Zajo Kralik\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=Zajozor\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://sidharth.dev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10703445?v=4?s=100\" width=\"100px;\" alt=\"Sidharth Vinod\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSidharth Vinod\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=sidharthv96\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://jaylenwimbish.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/6505395?v=4?s=100\" width=\"100px;\" alt=\"Jaylen Wimbish\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJaylen Wimbish\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=jaylenw\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/princeIta\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/39308646?v=4?s=100\" width=\"100px;\" alt=\"princeIta\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eprinceIta\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=princeIta\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://brianwhitton.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2090382?v=4?s=100\" width=\"100px;\" alt=\"Brian Whitton\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBrian Whitton\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=noslouch\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/issues?q=author%3Anoslouch\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/BohdanPetryshyn\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/45905756?v=4?s=100\" width=\"100px;\" alt=\"Bohdan Petryshyn\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBohdan Petryshyn\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=BohdanPetryshyn\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/herberttn\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/5903869?v=4?s=100\" width=\"100px;\" alt=\"Herbert Treis Neto\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHerbert Treis Neto\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=herberttn\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://lifterlms.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1290739?v=4?s=100\" width=\"100px;\" alt=\"Thomas Patrick Levy\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eThomas Patrick Levy\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=thomasplevy\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/laurislokalise\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/74536758?v=4?s=100\" width=\"100px;\" alt=\"Lauris Mikāls\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLauris Mikāls\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=laurislokalise\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/rena-h\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/20507786?v=4?s=100\" width=\"100px;\" alt=\"Rena Hamada\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRena Hamada\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=rena-h\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://jacob.cs.ie　　　　　　　　　　　　　　　　@jacob.pages.dev/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/28478594?v=4?s=100\" width=\"100px;\" alt=\"JacobLinCool\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJacobLinCool\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=JacobLinCool\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=JacobLinCool\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://tommasoferrari.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/927264?v=4?s=100\" width=\"100px;\" alt=\"Tommaso Ferrari\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTommaso Ferrari\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=raspo\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/Raigen\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/894799?v=4?s=100\" width=\"100px;\" alt=\"Florian\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFlorian\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=Raigen\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://mh4gf.dev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/31152321?v=4?s=100\" width=\"100px;\" alt=\"Hirotaka Miyagi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHirotaka Miyagi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=MH4GF\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://armfazh.github.io\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10335519?v=4?s=100\" width=\"100px;\" alt=\"Armando Faz\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eArmando Faz\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=armfazh\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/maciejtutak\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10584953?v=4?s=100\" width=\"100px;\" alt=\"Maciej Tutak\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMaciej Tutak\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=maciejtutak\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.nikodev.ca\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/34389859?v=4?s=100\" width=\"100px;\" alt=\"Niko Oshinov\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNiko Oshinov\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=nikodevv\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://dalefenton.com/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/16996057?v=4?s=100\" width=\"100px;\" alt=\"Dale Fenton\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDale Fenton\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=dalevfenton\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=dalevfenton\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://projects.flo.by\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/235570?v=4?s=100\" width=\"100px;\" alt=\"Florent Jaby\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFlorent Jaby\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=Floby\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/vikasperi\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/117131235?v=4?s=100\" width=\"100px;\" alt=\"vikasperi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003evikasperi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=vikasperi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/hyperair\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/88355?v=4?s=100\" width=\"100px;\" alt=\"Chow Loong Jin\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChow Loong Jin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/issues?q=author%3Ahyperair\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=hyperair\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/aj8k\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1395376?v=4?s=100\" width=\"100px;\" alt=\"Anton Joy\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAnton Joy\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=aj8k\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.dannylan.me\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/25760929?v=4?s=100\" width=\"100px;\" alt=\"Danny Lan\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDanny Lan\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=ddlan\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://brian-cooper.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/20056195?v=4?s=100\" width=\"100px;\" alt=\"Brian Cooper\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBrian Cooper\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=coopbri\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://d.hatena.ne.jp/syossan/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/910446?v=4?s=100\" width=\"100px;\" alt=\"syossan27\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003esyossan27\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/ArtiomTr/jest-coverage-report-action/commits?author=syossan27\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\n## License\n\nMIT © [Artiom Tretjakovas](https://github.com/ArtiomTr)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartiomtr%2Fjest-coverage-report-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartiomtr%2Fjest-coverage-report-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartiomtr%2Fjest-coverage-report-action/lists"}