Skip to content

Commit

Permalink
Fix table formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillick committed Jan 4, 2023
1 parent 618bf88 commit 3ad6698
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions dist/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ All files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= renderFileSummary(total) %>
<%= all.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>

Expand All @@ -38,7 +37,6 @@ All files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= renderFileSummary(total) %>
<%= changed.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>
<% } %>
Expand All @@ -54,7 +52,6 @@ Unchanged files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= unchanged.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>

</details>
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": "test-coverage-reporter",
"version": "1.0.5",
"version": "1.0.6",
"description": "Generate a test coverage report for a PR",
"main": "dist/index.js",
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions src/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ All files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= renderFileSummary(total) %>
<%= all.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>

Expand All @@ -38,7 +37,6 @@ All files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= renderFileSummary(total) %>
<%= changed.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>
<% } %>
Expand All @@ -54,7 +52,6 @@ Unchanged files

| Name | Stmts | Branch | Funcs | Lines |
| ---- | ----- | ------ | ----- | ----- |

<%= unchanged.map((fileSummary) => renderFileSummary(fileSummary)).join('\n') %>

</details>
Expand Down

0 comments on commit 3ad6698

Please sign in to comment.