Files
javascript-action/src/index.js
T

9 lines
170 B
JavaScript
Raw Normal View History

2023-09-14 10:36:27 -04:00
/**
2024-11-15 12:30:35 -05:00
* The entrypoint for the action. This file simply imports and runs the action's
* main logic.
2023-09-14 10:36:27 -04:00
*/
2024-11-15 12:30:35 -05:00
import { run } from './main.js'
2023-09-14 10:36:27 -04:00
2024-11-15 12:30:35 -05:00
/* istanbul ignore next */
2023-09-14 10:36:27 -04:00
run()