Skip to content

Commit

Permalink
v0.2.18-alpha.7
Browse files Browse the repository at this point in the history
  • Loading branch information
romeovs committed Mar 6, 2020
1 parent b787d4b commit 74dd039
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22962,14 +22962,15 @@ async function main$1() {
console.log(`No coverage report found at '${baseFile}', ignoring...`);
}

console.log(JSON.stringify(github_1.payload, null, 2));

const github = new github_2(token);
const files = await changedFiles(
github,
github_1.repo,
github_1.payload.commits,
);

console.log(JSON.stringify(github_1.payload, null, 2));
console.log(JSON.stringify(files, null, 2));

const options = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lcov-reporter-action",
"version": "0.2.18-alpha.6",
"version": "0.2.18-alpha.7",
"description": "Comments a pull request with the lcov code coverage",
"license": "MIT",
"author": "Romeo Van Snick",
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ async function main() {
console.log(`No coverage report found at '${baseFile}', ignoring...`)
}

console.log(JSON.stringify(context.payload, null, 2))

const github = new GitHub(token)
const files = await changedFiles(
github,
context.repo,
context.payload.commits,
)

console.log(JSON.stringify(context.payload, null, 2))
console.log(JSON.stringify(files, null, 2))

const options = {
Expand Down

0 comments on commit 74dd039

Please sign in to comment.