mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-11 13:22:17 +08:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import {exec} from '@actions/exec'
|
|
|
|
export const run = async (cmd: string, {cwd}: {cwd: string}): Promise<void> => {
|
|
await exec('yarn', cmd.split(' '), {cwd})
|
|
}
|