We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b4d94 commit 6ca6af0Copy full SHA for 6ca6af0
1 file changed
.github/workflows/run_affected_tests.yml
@@ -139,8 +139,10 @@ jobs:
139
for package in ${packages}; do
140
echo "Finding packages which depend on '${package}'..."
141
dependents=$(find lib/node_modules/@stdlib -type f -name '*.js' -print0 | xargs -0 grep -ol -E "require\( [']${package}['] \)")
142
+ echo "Found: ${dependents}"
143
if [ -n "${dependents}" ]; then
144
dependents=$(dirname $dependents | sed -E 's/\/(bin|data|etc|include|lib|src|test)\/?$//' | sort -u)
145
+ echo "List of dependents: ${dependents}"
146
required_by="${required_by} ${dependents}"
147
fi
148
done
0 commit comments