Skip to content

Commit 50a9317

Browse files
committed
Fix get inputs
1 parent 6a77551 commit 50a9317

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import {parseXmls} from './parser'
66
async function run(): Promise<void> {
77
try {
88
const reportPath = core.getInput('report-path', {required: true})
9-
const ignoreWarnings = core.getBooleanInput('ignore-warnings')
109
const globOptions = {
1110
followSymbolicLinks: core.getBooleanInput('follow-symbolic-links')
1211
}
12+
const ignoreWarnings = core.getBooleanInput('ignore-warnings')
13+
1314
const globber = await glob.create(reportPath, globOptions)
1415
const files = await globber.glob()
1516

0 commit comments

Comments
 (0)