├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── coverage.yml │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── flake.lock ├── flake.nix ├── img ├── check.png └── comment.png ├── index.js ├── package.json └── src ├── action.js ├── action.test.js ├── cobertura.js ├── cobertura.test.js ├── fixtures ├── test-branch.xml ├── test-istanbul-single.xml ├── test-istanbul.xml ├── test-missing-lines.xml ├── test-no-branch.xml └── test-python.xml ├── utils.js └── utils.test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/flake.nix -------------------------------------------------------------------------------- /img/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/img/check.png -------------------------------------------------------------------------------- /img/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/img/comment.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/package.json -------------------------------------------------------------------------------- /src/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/action.js -------------------------------------------------------------------------------- /src/action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/action.test.js -------------------------------------------------------------------------------- /src/cobertura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/cobertura.js -------------------------------------------------------------------------------- /src/cobertura.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/cobertura.test.js -------------------------------------------------------------------------------- /src/fixtures/test-branch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-branch.xml -------------------------------------------------------------------------------- /src/fixtures/test-istanbul-single.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-istanbul-single.xml -------------------------------------------------------------------------------- /src/fixtures/test-istanbul.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-istanbul.xml -------------------------------------------------------------------------------- /src/fixtures/test-missing-lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-missing-lines.xml -------------------------------------------------------------------------------- /src/fixtures/test-no-branch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-no-branch.xml -------------------------------------------------------------------------------- /src/fixtures/test-python.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/fixtures/test-python.xml -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5monkeys/cobertura-action/HEAD/src/utils.test.js --------------------------------------------------------------------------------