actions-yarn
actions-yarn copied to clipboard
Run in specific folder
Run the yarn command in a workspace's folder
Here is a usecase example. Repo Architecture:
.
frontend
_ package.json
backend
Would run the yarn command in the selected folder (frontend|backend)
- name: Install dependencies
uses: borales/[email protected]
with:
cmd: install
dir: frontend
Can use:
cmd: --cwd frontend install
https://github.com/Borales/actions-yarn/releases/tag/v4.1.0 added