Skip to content

Commit

Permalink
wip: Fix code fence
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Oct 9, 2020
1 parent 4d85e90 commit cb9183c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const fs = require('fs');
const commentBody = '```' + fs.readFileSync('coverage.log', 'utf8') + '```';
const commentBody = fs.readFileSync('coverage.log', 'utf8');
if (commentBody.length === 0) {
return
Expand Down

0 comments on commit cb9183c

Please sign in to comment.