Skip to content

Commit 1b192bd

Browse files
committed
debug artifacts 6
1 parent 70533f2 commit 1b192bd

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,39 @@ jobs:
551551
echo "--- $(basename $log_file) ---"
552552
cat "$log_file"
553553
done
554+
555+
# Find and print all @clerk package.json files in node_modules (recursively)
556+
echo ""
557+
echo "=========================================="
558+
echo "@clerk packages in node_modules (all)"
559+
echo "=========================================="
560+
561+
if [ -d "$app_dir/node_modules" ]; then
562+
# Find all @clerk packages recursively in node_modules
563+
clerk_packages=$(find "$app_dir/node_modules" -type d -path "*/node_modules/@clerk/*" -maxdepth 10 2>/dev/null | sort -u)
564+
565+
if [ -n "$clerk_packages" ]; then
566+
echo "Found @clerk packages:"
567+
echo "$clerk_packages" | while read -r pkg_path; do
568+
echo " - $pkg_path"
569+
done
570+
echo ""
571+
572+
# Print each package.json
573+
echo "$clerk_packages" | while read -r pkg_path; do
574+
if [ -f "$pkg_path/package.json" ]; then
575+
rel_path=$(echo "$pkg_path" | sed "s|$app_dir/||")
576+
echo ""
577+
echo "--- $rel_path/package.json ---"
578+
cat "$pkg_path/package.json"
579+
fi
580+
done
581+
else
582+
echo "No @clerk packages found in node_modules"
583+
fi
584+
else
585+
echo "No node_modules directory found at: $app_dir/node_modules"
586+
fi
554587
done
555588
556589
- name: Upload test-results

integration/templates/react-vite/src/main.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ const Root = () => {
4545
: undefined,
4646
}}
4747
>
48-
here?
4948
<Outlet />
5049
</ClerkProvider>
5150
);

0 commit comments

Comments
 (0)