We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e77a06 commit 16098efCopy full SHA for 16098ef
2 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+## 4.1.0 (26 Nov 2022)
4
+
5
+- Added `dir` option
6
7
## 4.0.0 (26 Nov 2022)
8
9
- Migrated to Actions toolkit
README.md
@@ -37,8 +37,16 @@ jobs:
37
uses: borales/actions-yarn@v4
38
with:
39
cmd: test # will run `yarn test` command
40
41
+ - name: Run test in sub-folder
42
+ uses: borales/actions-yarn@v4
43
+ with:
44
+ cmd: test
45
+ dir: 'frontend' # will run `yarn test` in `frontend` sub folder
46
```
47
48
> `cmd` value will be used as a command for Yarn
49
+>
50
+> `dir` value will be used for Yarn `cwd`
51
52
More information about [private registry setup](https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#use-private-packages).
0 commit comments