Skip to content

Commit

Permalink
eof
Browse files Browse the repository at this point in the history
  • Loading branch information
jazanne committed Jan 29, 2024
1 parent 8abd6c9 commit 9ac4eb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('action', () => {
expect(runMock).toHaveReturned()

// Verify that all of the core library functions were called correctly
expect(setSummaryMock).toHaveBeenNthCalledWith(1, 'Just a test')
expect(setSummaryMock).toHaveBeenNthCalledWith(1, 'Just a test', true)
expect(errorMock).not.toHaveBeenCalled()
})
})
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function run(): Promise<void> {
const summary: string[] = core.getMultilineInput('summary')

for (const line of summary) {
core.summary.addRaw(line)
core.summary.addRaw(line, true)
}

core.summary.write()
Expand Down

0 comments on commit 9ac4eb1

Please sign in to comment.