mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 10:55:23 -08:00
12 lines
174 B
TypeScript
12 lines
174 B
TypeScript
import * as core from '@actions/core'
|
|
|
|
async function run(): Promise<void> {
|
|
try {
|
|
core.info('TODO')
|
|
} catch (error) {
|
|
core.setFailed(error.message)
|
|
}
|
|
}
|
|
|
|
run()
|