We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0811380 commit 25392e9Copy full SHA for 25392e9
1 file changed
.github/workflows/pre-merge.yml
@@ -30,6 +30,22 @@ jobs:
30
- name: Check dependencies alignment
31
run: yarn check-dependencies
32
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
+
49
- name: Run Lint
50
run: yarn ci:lint
51
0 commit comments