Skip to content

Commit 1d36361

Browse files
committed
Fix main.ts to called index.ts
1 parent c19fe71 commit 1d36361

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as glob from '@actions/glob'
33
import {echoMessages} from './command.js'
44
import {parseXmls} from './parser.js'
55

6-
async function run(): Promise<void> {
6+
export async function run(): Promise<void> {
77
try {
88
const reportPath = core.getInput('report-path', {required: true})
99
const globOptions = {
@@ -29,5 +29,3 @@ async function run(): Promise<void> {
2929
if (error instanceof Error) core.setFailed(error.message)
3030
}
3131
}
32-
33-
run()

0 commit comments

Comments
 (0)