├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── src └── reportgenerator.ts ├── tsconfig.json └── update-version.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | lib/ 3 | node_modules 4 | reportgeneratortool 5 | src/*.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/package.json -------------------------------------------------------------------------------- /src/reportgenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/src/reportgenerator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpalme/ReportGenerator-GitHub-Action/HEAD/update-version.ps1 --------------------------------------------------------------------------------