Skip to content

Commit

Permalink
Missed passing target
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-imx committed Nov 13, 2023
1 parent c397bce commit 0d0f04e
Show file tree
Hide file tree
Showing 2 changed files with 13,939 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/coverage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ const fs = require('fs');

const inputs = {
coverage: core.getInput('coverage'),
target: core.getInputs('target'),
target: core.getInput('target'),
};


(async () => {
const { updateComment } = require("../../utils/github");

const data = fs.readFileSync(inputs.coverage, { encoding: 'utf8', flag: 'r' });
await updateComment(data);
await updateComment(inputs.target, data);
})();

Loading

0 comments on commit 0d0f04e

Please sign in to comment.