11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
/**
|
|
* The entrypoint for the action.
|
|
*/
|
|
import { run } from './main'
|
|
import minimist from 'minimist'
|
|
|
|
const path = minimist(process.argv.slice(2)).path || '.'
|
|
console.log(path)
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
run(path)
|