├── .all-contributorsrc ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation.md │ └── feature_request.md ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── docs-deploy.yml │ ├── draft-release.yml │ ├── rebuild.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── __mocks__ ├── @actions │ ├── core │ │ └── index.ts │ ├── exec │ │ └── index.ts │ └── github │ │ └── index.ts ├── c12 │ └── index.ts ├── fs-extra │ └── index.ts └── path │ └── index.ts ├── action.yml ├── dist ├── index.js ├── index.js.LICENSE.txt └── index.js.map ├── docs ├── .gitignore ├── assets │ ├── annotation-example.jpg │ ├── blob1.svg │ ├── coverage-annotation-example.jpg │ ├── coverage-comment-example.jpg │ ├── dots.svg │ ├── failed-test-annotation-example.jpg │ ├── logo-single-background.svg │ └── logo.svg ├── mdx.d.ts ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── public │ ├── analytics.js │ ├── favicon.ico │ └── robots.txt ├── src │ ├── components │ │ ├── BotLogo.tsx │ │ ├── CoverageComment.module.scss │ │ ├── CoverageComment.tsx │ │ ├── EditorWithCopy.tsx │ │ ├── Footer.tsx │ │ ├── FooterLink.tsx │ │ ├── FooterSection.tsx │ │ ├── GradientHeading.tsx │ │ ├── Header.module.scss │ │ ├── Header.tsx │ │ ├── HomeExample.module.scss │ │ ├── HomeExample.tsx │ │ ├── LinkProps.ts │ │ ├── Rating.tsx │ │ ├── ResponsiveImage.tsx │ │ ├── fake-github-parts │ │ │ ├── CheckItem.tsx │ │ │ ├── Checks.tsx │ │ │ └── PrFooter.tsx │ │ ├── landing │ │ │ ├── InfoImageScreen.tsx │ │ │ ├── InfoScreen.tsx │ │ │ └── ScreenContainer.tsx │ │ ├── layouts │ │ │ ├── LayoutDocs.tsx │ │ │ └── LayoutProps.ts │ │ └── markdown │ │ │ ├── Code.module.scss │ │ │ ├── Code.tsx │ │ │ ├── MarkdownHeading.module.scss │ │ │ ├── MarkdownHeading.tsx │ │ │ ├── MarkdownWrapper.tsx │ │ │ ├── MdLink.tsx │ │ │ └── components.tsx │ ├── pages │ │ ├── Home.module.scss │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── configuration.md │ │ ├── index.tsx │ │ ├── migrate.md │ │ └── quick-start.md │ └── theme.ts ├── styles │ └── globals.css ├── tools │ ├── .eslintrc │ ├── loaders │ │ └── md-loader.js │ └── scripts │ │ └── deploy.js └── tsconfig.json ├── esbuild.cjs ├── fileTransformer.js ├── img ├── Github-comment-screenshot.jpg └── Rejected-PR-screenshot.jpg ├── index.d.ts ├── jest.config.js ├── package.json ├── pull-request.json ├── run.sh ├── src ├── annotations │ ├── Annotation.ts │ ├── __mocks__ │ │ ├── createCoverageAnnotations.ts │ │ └── createFailedTestsAnnotations.ts │ ├── createCoverageAnnotations.ts │ ├── createFailedTestsAnnotations.ts │ └── isAnnotationEnabled.ts ├── constants │ ├── GITHUB_MESSAGE_SIZE_LIMIT.ts │ ├── REPORT_PATH.ts │ └── getReportTag.ts ├── filters │ └── onlyChanged.ts ├── format │ ├── annotations │ │ ├── CreateCheckOptions.ts │ │ ├── __mocks__ │ │ │ ├── formatCoverageAnnotations.ts │ │ │ └── formatFailedTestsAnnotations.ts │ │ ├── formatCoverageAnnotations.ts │ │ ├── formatFailedTestsAnnotations.ts │ │ └── getFailedAnnotationsSummary.ts │ ├── counters.ts │ ├── details │ │ ├── findCommonPath.ts │ │ ├── formatCoverageDetails.ts │ │ ├── formatCoverageDetailsPart.ts │ │ ├── getDecreasedCoverage.ts │ │ ├── getFileCoverageDetailRow.ts │ │ ├── getNewFilesCoverage.ts │ │ ├── parseDetails.ts │ │ └── shrinkLongPath.ts │ ├── formatCoverage.ts │ ├── formatErrors.ts │ ├── formatRunReport.ts │ ├── formatThresholdResults.ts │ ├── getFailureDetails.ts │ ├── getFormattedCoverage.ts │ ├── getPercents.ts │ ├── strings.json │ ├── summary │ │ ├── formatCoverageSummary.ts │ │ ├── getSummary.ts │ │ └── parseSummary.ts │ └── template.md ├── index.ts ├── report │ ├── __mocks__ │ │ ├── generateCommitReport.ts │ │ └── generatePRReport.ts │ ├── fetchPreviousReport.ts │ ├── generateCommitReport.ts │ └── generatePRReport.ts ├── run.ts ├── stages │ ├── __mocks__ │ │ ├── createReport.ts │ │ ├── getCoverage.ts │ │ └── switchBranch.ts │ ├── checkThreshold.ts │ ├── collectCoverage.ts │ ├── createReport.ts │ ├── createRunReport.ts │ ├── getCoverage.ts │ ├── installDependencies.ts │ ├── parseCoverage.ts │ ├── runTest.ts │ └── switchBranch.ts ├── typings │ ├── ActionError.ts │ ├── Coverage.ts │ ├── JestThreshold.ts │ ├── JsonReport.ts │ ├── Options.ts │ ├── Report.ts │ ├── ThresholdResult.ts │ └── __mocks__ │ │ └── Options.ts └── utils │ ├── DataCollector.ts │ ├── __mocks__ │ └── removeDirectory.ts │ ├── accumulateCoverageDetails.ts │ ├── checkSingleThreshold.ts │ ├── createMarkdownSpoiler.ts │ ├── decimalToString.ts │ ├── formatPercentage.ts │ ├── formatPercentageDelta.ts │ ├── getConsoleLink.ts │ ├── getCoverageForDirectory.ts │ ├── getFileCoverageMap.ts │ ├── getNormalThreshold.ts │ ├── getPrPatch.ts │ ├── getStatusOfPercents.ts │ ├── getTestCommand.ts │ ├── i18n.ts │ ├── insertArgs.ts │ ├── isOldScript.ts │ ├── isValidNumber.ts │ ├── joinPaths.ts │ ├── markdownTable.ts │ ├── parseJestConfig.ts │ ├── removeDirectory.ts │ ├── runStage.ts │ ├── tryGetJestThreshold.ts │ ├── upsertCheck.ts │ └── withExplanation.ts ├── tests ├── .eslintrc ├── annotations │ ├── __snapshots__ │ │ ├── createCoverageAnnotations.test.ts.snap │ │ └── createFailedTestsAnnotations.test.ts.snap │ ├── createCoverageAnnotations.test.ts │ ├── createFailedTestsAnnotations.test.ts │ └── isAnnotationEnabled.test.ts ├── constants │ ├── GITHUB_MESSAGE_SIZE_LIMIT.test.ts │ ├── REPORT_PATH.test.ts │ └── getReportTag.test.ts ├── filters │ └── onlyChanged.test.ts ├── format │ ├── __snapshots__ │ │ ├── formatCoverage.test.ts.snap │ │ ├── formatErrors.test.ts.snap │ │ ├── formatRunReport.test.ts.snap │ │ └── getFormattedCoverage.test.ts.snap │ ├── annotations │ │ ├── __snapshots__ │ │ │ ├── formatCoverageAnnotations.test.ts.snap │ │ │ └── formatFailedTestsAnnotations.test.ts.snap │ │ ├── formatCoverageAnnotations.test.ts │ │ ├── formatFailedTestsAnnotations.test.ts │ │ └── getFailedAnnotationsSummary.test.ts │ ├── counters.test.ts │ ├── details │ │ ├── __snapshots__ │ │ │ ├── formatCoverageDetails.test.ts.snap │ │ │ ├── getFileCoverageDetailRow.test.ts.snap │ │ │ └── parseDetails.test.ts.snap │ │ ├── findCommonPath.test.ts │ │ ├── formatCoverageDetails.test.ts │ │ ├── getDecreasedCoverage.test.ts │ │ ├── getFileCoverageDetailRow.test.ts │ │ ├── getNewFilesCoverage.test.ts │ │ ├── parseDetails.test.ts │ │ └── shrinkLongPath.test.ts │ ├── formatCoverage.test.ts │ ├── formatErrors.test.ts │ ├── formatRunReport.test.ts │ ├── getFailureDetails.test.ts │ ├── getFormattedCoverage.test.ts │ ├── getPercents.test.ts │ └── summary │ │ ├── __snapshots__ │ │ ├── formatCoverageSummary.test.ts.snap │ │ └── parseSummary.test.ts.snap │ │ ├── formatCoverageSummary.test.ts │ │ ├── getSummary.test.ts │ │ └── parseSummary.test.ts ├── mock-data │ ├── jsonReport.json │ ├── jsonReport2.json │ └── jsonReport3.json ├── report │ ├── fetchPreviousReport.test.ts │ ├── generateCommitReport.test.ts │ └── generatePRReport.test.ts ├── run.test.ts ├── stages │ ├── __snapshots__ │ │ └── createReport.test.ts.snap │ ├── collectCoverage.test.ts │ ├── createReport.test.ts │ ├── getCoverage.test.ts │ ├── installDependencies.test.ts │ ├── parseCoverage.test.ts │ ├── runTest.test.ts │ └── switchBranch.test.ts ├── typings │ ├── Options.test.ts │ └── Report.test.ts └── utils │ ├── DataCollector.test.ts │ ├── createMarkdownSpoiler.test.ts │ ├── decimalToString.test.ts │ ├── formatPercentage.test.ts │ ├── formatPercentageDelta.test.ts │ ├── getConsoleLink.test.ts │ ├── getStatusOfPercents.test.ts │ ├── getTestCommand.test.ts │ ├── i18n.test.ts │ ├── insertArgs.test.ts │ ├── isOldScript.test.ts │ ├── joinPaths.test.ts │ ├── removeDirectory.test.ts │ ├── runStage.test.ts │ └── withExplanation.test.ts └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.config.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/workflows/docs-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/rebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/workflows/rebuild.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__mocks__/@actions/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/__mocks__/@actions/core/index.ts -------------------------------------------------------------------------------- /__mocks__/@actions/exec/index.ts: -------------------------------------------------------------------------------- 1 | export const exec = jest.fn(); 2 | -------------------------------------------------------------------------------- /__mocks__/@actions/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/__mocks__/@actions/github/index.ts -------------------------------------------------------------------------------- /__mocks__/c12/index.ts: -------------------------------------------------------------------------------- 1 | export const loadConfig = jest.fn(); 2 | -------------------------------------------------------------------------------- /__mocks__/fs-extra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/__mocks__/fs-extra/index.ts -------------------------------------------------------------------------------- /__mocks__/path/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/__mocks__/path/index.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/dist/index.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | out -------------------------------------------------------------------------------- /docs/assets/annotation-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/annotation-example.jpg -------------------------------------------------------------------------------- /docs/assets/blob1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/blob1.svg -------------------------------------------------------------------------------- /docs/assets/coverage-annotation-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/coverage-annotation-example.jpg -------------------------------------------------------------------------------- /docs/assets/coverage-comment-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/coverage-comment-example.jpg -------------------------------------------------------------------------------- /docs/assets/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/dots.svg -------------------------------------------------------------------------------- /docs/assets/failed-test-annotation-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/failed-test-annotation-example.jpg -------------------------------------------------------------------------------- /docs/assets/logo-single-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/logo-single-background.svg -------------------------------------------------------------------------------- /docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/mdx.d.ts -------------------------------------------------------------------------------- /docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/next-env.d.ts -------------------------------------------------------------------------------- /docs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/next.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/public/analytics.js -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/public/robots.txt -------------------------------------------------------------------------------- /docs/src/components/BotLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/BotLogo.tsx -------------------------------------------------------------------------------- /docs/src/components/CoverageComment.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/CoverageComment.module.scss -------------------------------------------------------------------------------- /docs/src/components/CoverageComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/CoverageComment.tsx -------------------------------------------------------------------------------- /docs/src/components/EditorWithCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/EditorWithCopy.tsx -------------------------------------------------------------------------------- /docs/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/Footer.tsx -------------------------------------------------------------------------------- /docs/src/components/FooterLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/FooterLink.tsx -------------------------------------------------------------------------------- /docs/src/components/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/FooterSection.tsx -------------------------------------------------------------------------------- /docs/src/components/GradientHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/GradientHeading.tsx -------------------------------------------------------------------------------- /docs/src/components/Header.module.scss: -------------------------------------------------------------------------------- 1 | .logo { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /docs/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/Header.tsx -------------------------------------------------------------------------------- /docs/src/components/HomeExample.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/HomeExample.module.scss -------------------------------------------------------------------------------- /docs/src/components/HomeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/HomeExample.tsx -------------------------------------------------------------------------------- /docs/src/components/LinkProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/LinkProps.ts -------------------------------------------------------------------------------- /docs/src/components/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/Rating.tsx -------------------------------------------------------------------------------- /docs/src/components/ResponsiveImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/ResponsiveImage.tsx -------------------------------------------------------------------------------- /docs/src/components/fake-github-parts/CheckItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/fake-github-parts/CheckItem.tsx -------------------------------------------------------------------------------- /docs/src/components/fake-github-parts/Checks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/fake-github-parts/Checks.tsx -------------------------------------------------------------------------------- /docs/src/components/fake-github-parts/PrFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/fake-github-parts/PrFooter.tsx -------------------------------------------------------------------------------- /docs/src/components/landing/InfoImageScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/landing/InfoImageScreen.tsx -------------------------------------------------------------------------------- /docs/src/components/landing/InfoScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/landing/InfoScreen.tsx -------------------------------------------------------------------------------- /docs/src/components/landing/ScreenContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/landing/ScreenContainer.tsx -------------------------------------------------------------------------------- /docs/src/components/layouts/LayoutDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/layouts/LayoutDocs.tsx -------------------------------------------------------------------------------- /docs/src/components/layouts/LayoutProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/layouts/LayoutProps.ts -------------------------------------------------------------------------------- /docs/src/components/markdown/Code.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/Code.module.scss -------------------------------------------------------------------------------- /docs/src/components/markdown/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/Code.tsx -------------------------------------------------------------------------------- /docs/src/components/markdown/MarkdownHeading.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/MarkdownHeading.module.scss -------------------------------------------------------------------------------- /docs/src/components/markdown/MarkdownHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/MarkdownHeading.tsx -------------------------------------------------------------------------------- /docs/src/components/markdown/MarkdownWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/MarkdownWrapper.tsx -------------------------------------------------------------------------------- /docs/src/components/markdown/MdLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/MdLink.tsx -------------------------------------------------------------------------------- /docs/src/components/markdown/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/components/markdown/components.tsx -------------------------------------------------------------------------------- /docs/src/pages/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/Home.module.scss -------------------------------------------------------------------------------- /docs/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/_app.tsx -------------------------------------------------------------------------------- /docs/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/_document.tsx -------------------------------------------------------------------------------- /docs/src/pages/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/configuration.md -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/migrate.md -------------------------------------------------------------------------------- /docs/src/pages/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/pages/quick-start.md -------------------------------------------------------------------------------- /docs/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/src/theme.ts -------------------------------------------------------------------------------- /docs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/styles/globals.css -------------------------------------------------------------------------------- /docs/tools/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/tools/.eslintrc -------------------------------------------------------------------------------- /docs/tools/loaders/md-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/tools/loaders/md-loader.js -------------------------------------------------------------------------------- /docs/tools/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/tools/scripts/deploy.js -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /esbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/esbuild.cjs -------------------------------------------------------------------------------- /fileTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/fileTransformer.js -------------------------------------------------------------------------------- /img/Github-comment-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/img/Github-comment-screenshot.jpg -------------------------------------------------------------------------------- /img/Rejected-PR-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/img/Rejected-PR-screenshot.jpg -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/package.json -------------------------------------------------------------------------------- /pull-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/pull-request.json -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/run.sh -------------------------------------------------------------------------------- /src/annotations/Annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/Annotation.ts -------------------------------------------------------------------------------- /src/annotations/__mocks__/createCoverageAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/__mocks__/createCoverageAnnotations.ts -------------------------------------------------------------------------------- /src/annotations/__mocks__/createFailedTestsAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/__mocks__/createFailedTestsAnnotations.ts -------------------------------------------------------------------------------- /src/annotations/createCoverageAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/createCoverageAnnotations.ts -------------------------------------------------------------------------------- /src/annotations/createFailedTestsAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/createFailedTestsAnnotations.ts -------------------------------------------------------------------------------- /src/annotations/isAnnotationEnabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/annotations/isAnnotationEnabled.ts -------------------------------------------------------------------------------- /src/constants/GITHUB_MESSAGE_SIZE_LIMIT.ts: -------------------------------------------------------------------------------- 1 | export const GITHUB_MESSAGE_SIZE_LIMIT = 65535; 2 | -------------------------------------------------------------------------------- /src/constants/REPORT_PATH.ts: -------------------------------------------------------------------------------- 1 | export const REPORT_PATH = 'report.json'; 2 | -------------------------------------------------------------------------------- /src/constants/getReportTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/constants/getReportTag.ts -------------------------------------------------------------------------------- /src/filters/onlyChanged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/filters/onlyChanged.ts -------------------------------------------------------------------------------- /src/format/annotations/CreateCheckOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/annotations/CreateCheckOptions.ts -------------------------------------------------------------------------------- /src/format/annotations/__mocks__/formatCoverageAnnotations.ts: -------------------------------------------------------------------------------- 1 | export const formatCoverageAnnotations = jest.fn(); 2 | -------------------------------------------------------------------------------- /src/format/annotations/__mocks__/formatFailedTestsAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/annotations/__mocks__/formatFailedTestsAnnotations.ts -------------------------------------------------------------------------------- /src/format/annotations/formatCoverageAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/annotations/formatCoverageAnnotations.ts -------------------------------------------------------------------------------- /src/format/annotations/formatFailedTestsAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/annotations/formatFailedTestsAnnotations.ts -------------------------------------------------------------------------------- /src/format/annotations/getFailedAnnotationsSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/annotations/getFailedAnnotationsSummary.ts -------------------------------------------------------------------------------- /src/format/counters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/counters.ts -------------------------------------------------------------------------------- /src/format/details/findCommonPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/findCommonPath.ts -------------------------------------------------------------------------------- /src/format/details/formatCoverageDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/formatCoverageDetails.ts -------------------------------------------------------------------------------- /src/format/details/formatCoverageDetailsPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/formatCoverageDetailsPart.ts -------------------------------------------------------------------------------- /src/format/details/getDecreasedCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/getDecreasedCoverage.ts -------------------------------------------------------------------------------- /src/format/details/getFileCoverageDetailRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/getFileCoverageDetailRow.ts -------------------------------------------------------------------------------- /src/format/details/getNewFilesCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/getNewFilesCoverage.ts -------------------------------------------------------------------------------- /src/format/details/parseDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/parseDetails.ts -------------------------------------------------------------------------------- /src/format/details/shrinkLongPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/details/shrinkLongPath.ts -------------------------------------------------------------------------------- /src/format/formatCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/formatCoverage.ts -------------------------------------------------------------------------------- /src/format/formatErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/formatErrors.ts -------------------------------------------------------------------------------- /src/format/formatRunReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/formatRunReport.ts -------------------------------------------------------------------------------- /src/format/formatThresholdResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/formatThresholdResults.ts -------------------------------------------------------------------------------- /src/format/getFailureDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/getFailureDetails.ts -------------------------------------------------------------------------------- /src/format/getFormattedCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/getFormattedCoverage.ts -------------------------------------------------------------------------------- /src/format/getPercents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/getPercents.ts -------------------------------------------------------------------------------- /src/format/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/strings.json -------------------------------------------------------------------------------- /src/format/summary/formatCoverageSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/summary/formatCoverageSummary.ts -------------------------------------------------------------------------------- /src/format/summary/getSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/summary/getSummary.ts -------------------------------------------------------------------------------- /src/format/summary/parseSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/summary/parseSummary.ts -------------------------------------------------------------------------------- /src/format/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/format/template.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/report/__mocks__/generateCommitReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/report/__mocks__/generateCommitReport.ts -------------------------------------------------------------------------------- /src/report/__mocks__/generatePRReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/report/__mocks__/generatePRReport.ts -------------------------------------------------------------------------------- /src/report/fetchPreviousReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/report/fetchPreviousReport.ts -------------------------------------------------------------------------------- /src/report/generateCommitReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/report/generateCommitReport.ts -------------------------------------------------------------------------------- /src/report/generatePRReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/report/generatePRReport.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/run.ts -------------------------------------------------------------------------------- /src/stages/__mocks__/createReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/__mocks__/createReport.ts -------------------------------------------------------------------------------- /src/stages/__mocks__/getCoverage.ts: -------------------------------------------------------------------------------- 1 | export const getCoverage = jest.fn(); 2 | -------------------------------------------------------------------------------- /src/stages/__mocks__/switchBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/__mocks__/switchBranch.ts -------------------------------------------------------------------------------- /src/stages/checkThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/checkThreshold.ts -------------------------------------------------------------------------------- /src/stages/collectCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/collectCoverage.ts -------------------------------------------------------------------------------- /src/stages/createReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/createReport.ts -------------------------------------------------------------------------------- /src/stages/createRunReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/createRunReport.ts -------------------------------------------------------------------------------- /src/stages/getCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/getCoverage.ts -------------------------------------------------------------------------------- /src/stages/installDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/installDependencies.ts -------------------------------------------------------------------------------- /src/stages/parseCoverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/parseCoverage.ts -------------------------------------------------------------------------------- /src/stages/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/runTest.ts -------------------------------------------------------------------------------- /src/stages/switchBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/stages/switchBranch.ts -------------------------------------------------------------------------------- /src/typings/ActionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/ActionError.ts -------------------------------------------------------------------------------- /src/typings/Coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/Coverage.ts -------------------------------------------------------------------------------- /src/typings/JestThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/JestThreshold.ts -------------------------------------------------------------------------------- /src/typings/JsonReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/JsonReport.ts -------------------------------------------------------------------------------- /src/typings/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/Options.ts -------------------------------------------------------------------------------- /src/typings/Report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/Report.ts -------------------------------------------------------------------------------- /src/typings/ThresholdResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/ThresholdResult.ts -------------------------------------------------------------------------------- /src/typings/__mocks__/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/typings/__mocks__/Options.ts -------------------------------------------------------------------------------- /src/utils/DataCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/DataCollector.ts -------------------------------------------------------------------------------- /src/utils/__mocks__/removeDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/__mocks__/removeDirectory.ts -------------------------------------------------------------------------------- /src/utils/accumulateCoverageDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/accumulateCoverageDetails.ts -------------------------------------------------------------------------------- /src/utils/checkSingleThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/checkSingleThreshold.ts -------------------------------------------------------------------------------- /src/utils/createMarkdownSpoiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/createMarkdownSpoiler.ts -------------------------------------------------------------------------------- /src/utils/decimalToString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/decimalToString.ts -------------------------------------------------------------------------------- /src/utils/formatPercentage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/formatPercentage.ts -------------------------------------------------------------------------------- /src/utils/formatPercentageDelta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/formatPercentageDelta.ts -------------------------------------------------------------------------------- /src/utils/getConsoleLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getConsoleLink.ts -------------------------------------------------------------------------------- /src/utils/getCoverageForDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getCoverageForDirectory.ts -------------------------------------------------------------------------------- /src/utils/getFileCoverageMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getFileCoverageMap.ts -------------------------------------------------------------------------------- /src/utils/getNormalThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getNormalThreshold.ts -------------------------------------------------------------------------------- /src/utils/getPrPatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getPrPatch.ts -------------------------------------------------------------------------------- /src/utils/getStatusOfPercents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getStatusOfPercents.ts -------------------------------------------------------------------------------- /src/utils/getTestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/getTestCommand.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/insertArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/insertArgs.ts -------------------------------------------------------------------------------- /src/utils/isOldScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/isOldScript.ts -------------------------------------------------------------------------------- /src/utils/isValidNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/isValidNumber.ts -------------------------------------------------------------------------------- /src/utils/joinPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/joinPaths.ts -------------------------------------------------------------------------------- /src/utils/markdownTable.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/parseJestConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/parseJestConfig.ts -------------------------------------------------------------------------------- /src/utils/removeDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/removeDirectory.ts -------------------------------------------------------------------------------- /src/utils/runStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/runStage.ts -------------------------------------------------------------------------------- /src/utils/tryGetJestThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/tryGetJestThreshold.ts -------------------------------------------------------------------------------- /src/utils/upsertCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/upsertCheck.ts -------------------------------------------------------------------------------- /src/utils/withExplanation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/src/utils/withExplanation.ts -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/annotations/__snapshots__/createCoverageAnnotations.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/annotations/__snapshots__/createCoverageAnnotations.test.ts.snap -------------------------------------------------------------------------------- /tests/annotations/__snapshots__/createFailedTestsAnnotations.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/annotations/__snapshots__/createFailedTestsAnnotations.test.ts.snap -------------------------------------------------------------------------------- /tests/annotations/createCoverageAnnotations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/annotations/createCoverageAnnotations.test.ts -------------------------------------------------------------------------------- /tests/annotations/createFailedTestsAnnotations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/annotations/createFailedTestsAnnotations.test.ts -------------------------------------------------------------------------------- /tests/annotations/isAnnotationEnabled.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/annotations/isAnnotationEnabled.test.ts -------------------------------------------------------------------------------- /tests/constants/GITHUB_MESSAGE_SIZE_LIMIT.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/constants/GITHUB_MESSAGE_SIZE_LIMIT.test.ts -------------------------------------------------------------------------------- /tests/constants/REPORT_PATH.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/constants/REPORT_PATH.test.ts -------------------------------------------------------------------------------- /tests/constants/getReportTag.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/constants/getReportTag.test.ts -------------------------------------------------------------------------------- /tests/filters/onlyChanged.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/filters/onlyChanged.test.ts -------------------------------------------------------------------------------- /tests/format/__snapshots__/formatCoverage.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/__snapshots__/formatCoverage.test.ts.snap -------------------------------------------------------------------------------- /tests/format/__snapshots__/formatErrors.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/__snapshots__/formatErrors.test.ts.snap -------------------------------------------------------------------------------- /tests/format/__snapshots__/formatRunReport.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/__snapshots__/formatRunReport.test.ts.snap -------------------------------------------------------------------------------- /tests/format/__snapshots__/getFormattedCoverage.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/__snapshots__/getFormattedCoverage.test.ts.snap -------------------------------------------------------------------------------- /tests/format/annotations/__snapshots__/formatCoverageAnnotations.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/annotations/__snapshots__/formatCoverageAnnotations.test.ts.snap -------------------------------------------------------------------------------- /tests/format/annotations/__snapshots__/formatFailedTestsAnnotations.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/annotations/__snapshots__/formatFailedTestsAnnotations.test.ts.snap -------------------------------------------------------------------------------- /tests/format/annotations/formatCoverageAnnotations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/annotations/formatCoverageAnnotations.test.ts -------------------------------------------------------------------------------- /tests/format/annotations/formatFailedTestsAnnotations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/annotations/formatFailedTestsAnnotations.test.ts -------------------------------------------------------------------------------- /tests/format/annotations/getFailedAnnotationsSummary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/annotations/getFailedAnnotationsSummary.test.ts -------------------------------------------------------------------------------- /tests/format/counters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/counters.test.ts -------------------------------------------------------------------------------- /tests/format/details/__snapshots__/formatCoverageDetails.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/__snapshots__/formatCoverageDetails.test.ts.snap -------------------------------------------------------------------------------- /tests/format/details/__snapshots__/getFileCoverageDetailRow.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/__snapshots__/getFileCoverageDetailRow.test.ts.snap -------------------------------------------------------------------------------- /tests/format/details/__snapshots__/parseDetails.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/__snapshots__/parseDetails.test.ts.snap -------------------------------------------------------------------------------- /tests/format/details/findCommonPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/findCommonPath.test.ts -------------------------------------------------------------------------------- /tests/format/details/formatCoverageDetails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/formatCoverageDetails.test.ts -------------------------------------------------------------------------------- /tests/format/details/getDecreasedCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/getDecreasedCoverage.test.ts -------------------------------------------------------------------------------- /tests/format/details/getFileCoverageDetailRow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/getFileCoverageDetailRow.test.ts -------------------------------------------------------------------------------- /tests/format/details/getNewFilesCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/getNewFilesCoverage.test.ts -------------------------------------------------------------------------------- /tests/format/details/parseDetails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/parseDetails.test.ts -------------------------------------------------------------------------------- /tests/format/details/shrinkLongPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/details/shrinkLongPath.test.ts -------------------------------------------------------------------------------- /tests/format/formatCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/formatCoverage.test.ts -------------------------------------------------------------------------------- /tests/format/formatErrors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/formatErrors.test.ts -------------------------------------------------------------------------------- /tests/format/formatRunReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/formatRunReport.test.ts -------------------------------------------------------------------------------- /tests/format/getFailureDetails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/getFailureDetails.test.ts -------------------------------------------------------------------------------- /tests/format/getFormattedCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/getFormattedCoverage.test.ts -------------------------------------------------------------------------------- /tests/format/getPercents.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/getPercents.test.ts -------------------------------------------------------------------------------- /tests/format/summary/__snapshots__/formatCoverageSummary.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/summary/__snapshots__/formatCoverageSummary.test.ts.snap -------------------------------------------------------------------------------- /tests/format/summary/__snapshots__/parseSummary.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/summary/__snapshots__/parseSummary.test.ts.snap -------------------------------------------------------------------------------- /tests/format/summary/formatCoverageSummary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/summary/formatCoverageSummary.test.ts -------------------------------------------------------------------------------- /tests/format/summary/getSummary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/summary/getSummary.test.ts -------------------------------------------------------------------------------- /tests/format/summary/parseSummary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/format/summary/parseSummary.test.ts -------------------------------------------------------------------------------- /tests/mock-data/jsonReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/mock-data/jsonReport.json -------------------------------------------------------------------------------- /tests/mock-data/jsonReport2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/mock-data/jsonReport2.json -------------------------------------------------------------------------------- /tests/mock-data/jsonReport3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/mock-data/jsonReport3.json -------------------------------------------------------------------------------- /tests/report/fetchPreviousReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/report/fetchPreviousReport.test.ts -------------------------------------------------------------------------------- /tests/report/generateCommitReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/report/generateCommitReport.test.ts -------------------------------------------------------------------------------- /tests/report/generatePRReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/report/generatePRReport.test.ts -------------------------------------------------------------------------------- /tests/run.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/run.test.ts -------------------------------------------------------------------------------- /tests/stages/__snapshots__/createReport.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/__snapshots__/createReport.test.ts.snap -------------------------------------------------------------------------------- /tests/stages/collectCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/collectCoverage.test.ts -------------------------------------------------------------------------------- /tests/stages/createReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/createReport.test.ts -------------------------------------------------------------------------------- /tests/stages/getCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/getCoverage.test.ts -------------------------------------------------------------------------------- /tests/stages/installDependencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/installDependencies.test.ts -------------------------------------------------------------------------------- /tests/stages/parseCoverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/parseCoverage.test.ts -------------------------------------------------------------------------------- /tests/stages/runTest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/runTest.test.ts -------------------------------------------------------------------------------- /tests/stages/switchBranch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/stages/switchBranch.test.ts -------------------------------------------------------------------------------- /tests/typings/Options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/typings/Options.test.ts -------------------------------------------------------------------------------- /tests/typings/Report.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/typings/Report.test.ts -------------------------------------------------------------------------------- /tests/utils/DataCollector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/DataCollector.test.ts -------------------------------------------------------------------------------- /tests/utils/createMarkdownSpoiler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/createMarkdownSpoiler.test.ts -------------------------------------------------------------------------------- /tests/utils/decimalToString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/decimalToString.test.ts -------------------------------------------------------------------------------- /tests/utils/formatPercentage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/formatPercentage.test.ts -------------------------------------------------------------------------------- /tests/utils/formatPercentageDelta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/formatPercentageDelta.test.ts -------------------------------------------------------------------------------- /tests/utils/getConsoleLink.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/getConsoleLink.test.ts -------------------------------------------------------------------------------- /tests/utils/getStatusOfPercents.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/getStatusOfPercents.test.ts -------------------------------------------------------------------------------- /tests/utils/getTestCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/getTestCommand.test.ts -------------------------------------------------------------------------------- /tests/utils/i18n.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/i18n.test.ts -------------------------------------------------------------------------------- /tests/utils/insertArgs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/insertArgs.test.ts -------------------------------------------------------------------------------- /tests/utils/isOldScript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/isOldScript.test.ts -------------------------------------------------------------------------------- /tests/utils/joinPaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/joinPaths.test.ts -------------------------------------------------------------------------------- /tests/utils/removeDirectory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/removeDirectory.test.ts -------------------------------------------------------------------------------- /tests/utils/runStage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/runStage.test.ts -------------------------------------------------------------------------------- /tests/utils/withExplanation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tests/utils/withExplanation.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtiomTr/jest-coverage-report-action/HEAD/tsconfig.json --------------------------------------------------------------------------------