Files
typescript-action/src/index.ts
T

8 lines
146 B
TypeScript
Raw Normal View History

2023-08-23 13:39:12 -04:00
/**
2023-09-11 15:54:30 -04:00
* The entrypoint for the action.
2023-08-23 13:39:12 -04:00
*/
2023-09-11 15:54:30 -04:00
import { run } from './main'
2023-08-23 13:39:12 -04:00
2023-08-23 13:57:44 -04:00
// eslint-disable-next-line @typescript-eslint/no-floating-promises
2023-08-23 13:39:12 -04:00
run()