Skip to content

Commit 25392e9

Browse files
committed
add debug CI bins step
1 parent 0811380 commit 25392e9

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/pre-merge.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@ jobs:
3030
- name: Check dependencies alignment
3131
run: yarn check-dependencies
3232

33+
- name: "[TEMP] Debug bins"
34+
run: |
35+
yarn workspaces foreach \
36+
--all \
37+
--parallel \
38+
--topological \
39+
exec sh -c '
40+
test -f package.json || exit 0
41+
jq -r "
42+
.bin?
43+
| to_entries[]
44+
| \"\(.key) → \(.value)\"
45+
" package.json \
46+
| sed "s|^|$(pwd)/|"
47+
'
48+
3349
- name: Run Lint
3450
run: yarn ci:lint
3551

0 commit comments

Comments
 (0)