Skip to content

Commit

Permalink
Debug step summary
Browse files Browse the repository at this point in the history
  • Loading branch information
WebDucer committed Jul 29, 2024
1 parent 83acb7b commit 9eb3c14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ export async function run(): Promise<void> {
// Get file name from input
const lcovFileName = core.getInput('lcov-file')
const excludeFiles = core.getInput('exclude-files')
const stepSummary = core.getInput('step-summary') === 'true'
const stepSummaryInput = core.getInput('step-summary')

// Check, the file name is set and exists
core.debug(`stepSummaryInput: ${stepSummaryInput}`)
if (!lcovFileName) {
core.setFailed('File name is required')
return
Expand Down

0 comments on commit 9eb3c14

Please sign in to comment.