test-reporter/src/main.ts
2020-10-01 23:35:59 +02:00

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()