├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .release-please-config.json ├── .release-please-manifest.json ├── .taprc ├── CHANGELOG.md ├── INTERNAL-NOTES.md ├── LICENSE ├── README.md ├── action.yml ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── src ├── main.ts └── utils.ts ├── test ├── fixtures │ ├── 9BD9E2DD46DA965A537E5B0A5CBF320243B6FD85.asc │ ├── README.md │ ├── dummy-cc-reporter-after-build-error.bat │ ├── dummy-cc-reporter-after-build-error.bat.sha256 │ ├── dummy-cc-reporter-after-build-error.sh │ ├── dummy-cc-reporter-after-build-error.sh.sha256 │ ├── dummy-cc-reporter-before-build-error.bat │ ├── dummy-cc-reporter-before-build-error.bat.sha256 │ ├── dummy-cc-reporter-before-build-error.sh │ ├── dummy-cc-reporter-before-build-error.sh.sha256 │ ├── dummy-cc-reporter.bat │ ├── dummy-cc-reporter.bat.sha256 │ ├── dummy-cc-reporter.bat.sha256.sig │ ├── dummy-cc-reporter.sh │ ├── dummy-cc-reporter.sh.sha256 │ └── dummy-cc-reporter.sh.sha256.sig ├── integration.test.ts ├── main.test.ts └── utils.test.ts ├── tsconfig.json └── tsup.config.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.npmrc -------------------------------------------------------------------------------- /.release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.release-please-config.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "9.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/.taprc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INTERNAL-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/INTERNAL-NOTES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/action.yml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/fixtures/9BD9E2DD46DA965A537E5B0A5CBF320243B6FD85.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/9BD9E2DD46DA965A537E5B0A5CBF320243B6FD85.asc -------------------------------------------------------------------------------- /test/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/README.md -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-after-build-error.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-after-build-error.bat -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-after-build-error.bat.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-after-build-error.bat.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-after-build-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-after-build-error.sh -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-after-build-error.sh.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-after-build-error.sh.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-before-build-error.bat: -------------------------------------------------------------------------------- 1 | :: Dummy shell script exits with a non-zero code. 2 | @echo off 3 | EXIT /b 69 4 | -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-before-build-error.bat.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-before-build-error.bat.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-before-build-error.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Dummy shell script exits with a non-zero code. 3 | exit 69 4 | -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter-before-build-error.sh.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter-before-build-error.sh.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.bat -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.bat.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.bat.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.bat.sha256.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.bat.sha256.sig -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.sh -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.sh.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.sh.sha256 -------------------------------------------------------------------------------- /test/fixtures/dummy-cc-reporter.sh.sha256.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/fixtures/dummy-cc-reporter.sh.sha256.sig -------------------------------------------------------------------------------- /test/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/integration.test.ts -------------------------------------------------------------------------------- /test/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/main.test.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paambaati/codeclimate-action/HEAD/tsup.config.ts --------------------------------------------------------------------------------