Skip to content

Commit c5669ea

Browse files
authored
Remove LCOV (#45)
* Remove lcov * Run prepare * Update index.js.map
1 parent 3da0a76 commit c5669ea

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ jobs:
4141
- name: Checkout code
4242
uses: actions/checkout@v2
4343
# ... Generate LCOV files or download it from a different job
44+
- name: Setup LCOV
45+
uses: hrishikesh-kadam/setup-lcov@v1
4446
- name: Report code coverage
45-
uses: zgosalvez/github-actions-report-lcov@v2
47+
uses: zgosalvez/github-actions-report-lcov@v3
4648
with:
4749
coverage-files: coverage/lcov.*.info
4850
minimum-coverage: 90

dist/main/index.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ const events = ['pull_request', 'pull_request_target'];
1111

1212
async function run() {
1313
try {
14-
await exec.exec('sudo apt-get install -y lcov');
15-
1614
const tmpPath = path.resolve(os.tmpdir(), github.context.action);
1715
const coverageFilesPattern = core.getInput('coverage-files');
1816
const globber = await glob.create(coverageFilesPattern);

0 commit comments

Comments
 (0)