We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a77551 commit 50a9317Copy full SHA for 50a9317
src/main.ts
@@ -6,10 +6,11 @@ import {parseXmls} from './parser'
6
async function run(): Promise<void> {
7
try {
8
const reportPath = core.getInput('report-path', {required: true})
9
- const ignoreWarnings = core.getBooleanInput('ignore-warnings')
10
const globOptions = {
11
followSymbolicLinks: core.getBooleanInput('follow-symbolic-links')
12
}
+ const ignoreWarnings = core.getBooleanInput('ignore-warnings')
13
+
14
const globber = await glob.create(reportPath, globOptions)
15
const files = await globber.glob()
16
0 commit comments