Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Feb 8, 2024
1 parent 5f55a75 commit 5f99e28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
script: |
const fs = require('fs');
const output = `${{ steps.coverage.outputs.COVERAGE }}`;
const currentCoverageFile = fs.readFileSync("coverage.txt", "utf8");
const file = fs.readFileSync("coverage.txt", "utf8");
const currentCoverageFile = `${file}`;
if (output != currentCoverageFile) {
console.log(currentCoverageFile);
core.setFailed('Code coverage not updated.');
Expand Down

0 comments on commit 5f99e28

Please sign in to comment.