mirror of
https://github.com/actions/javascript-action.git
synced 2025-12-13 10:05:16 +00:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
/**
|
|
* The entrypoint for the action. This file simply imports and runs the action's
|
|
* main logic.
|
|
*/
|
|
import { run } from './main.js'
|
|
|
|
/* istanbul ignore next */
|
|
run()
|