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 c19fe71 commit 1d36361Copy full SHA for 1d36361
src/main.ts
@@ -3,7 +3,7 @@ import * as glob from '@actions/glob'
3
import {echoMessages} from './command.js'
4
import {parseXmls} from './parser.js'
5
6
-async function run(): Promise<void> {
+export async function run(): Promise<void> {
7
try {
8
const reportPath = core.getInput('report-path', {required: true})
9
const globOptions = {
@@ -29,5 +29,3 @@ async function run(): Promise<void> {
29
if (error instanceof Error) core.setFailed(error.message)
30
}
31
32
-
33
-run()
0 commit comments