mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
11 lines
174 B
TypeScript
11 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()
|