├── .editorconfig ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .tool-versions ├── LICENSE ├── README.md ├── action.yml ├── dist └── main.js ├── package.json ├── rollup.config.js ├── src ├── cli.js ├── comment.js ├── delete_old_comments.js ├── get_changes.js ├── html.js ├── html_test.js ├── index.js ├── lcov.js ├── lcov_test.js ├── tabulate.js ├── tabulate_test.js ├── util.js └── util_test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.14.0 2 | yarn 1.22.21 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/dist/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/comment.js -------------------------------------------------------------------------------- /src/delete_old_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/delete_old_comments.js -------------------------------------------------------------------------------- /src/get_changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/get_changes.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/html.js -------------------------------------------------------------------------------- /src/html_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/html_test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lcov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/lcov.js -------------------------------------------------------------------------------- /src/lcov_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/lcov_test.js -------------------------------------------------------------------------------- /src/tabulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/tabulate.js -------------------------------------------------------------------------------- /src/tabulate_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/tabulate_test.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/util.js -------------------------------------------------------------------------------- /src/util_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/src/util_test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeovs/lcov-reporter-action/HEAD/yarn.lock --------------------------------------------------------------------------------