mikepenz/action-junit-report

Allow configuration of followSymbolicLinks

hanikesn opened this issue · 1 comments

Our bazel testlogs are symlinked into the output directory, but the globber is configured to not follow symlinks so we have to manually resolve the path and pass it.

const globber = await glob.create(`**/${normalizedFilename}.*`, {
followSymbolicLinks: false
})

Thank you so much! Amazing github action!