Commit 1e47bb3
committed
minor #1441 [CI] Trim yarn JSON in run-vitest-all (smnandre)
This PR was squashed before being merged into the 2.x branch.
Discussion
----------
[CI] Trim yarn JSON in run-vitest-all
On macOS, `yarn workspaces info` outputs some time/debug info outside the JSON, making it impossible to parse.
Trying to find a way to avoid that without messing with the script / other OS
```diff
-workspaces_info=$(yarn workspaces info)
+workspaces_info=$(yarn workspaces info | sed '1d;$d')
```
cc `@evertharmeling`
Commits
-------
6adb5f6 [CI] Trim yarn JSON in run-vitest-all1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
0 commit comments