We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d44dd18 commit f2b4772Copy full SHA for f2b4772
.github/workflows/main.yml
@@ -27,8 +27,9 @@ jobs:
27
run: >
28
find . -name package.json -maxdepth 10 -type f -not -path "*/node_modules/*" | while read -r file; do
29
directory=$(dirname "$file")
30
- echo "cd $directory"
+ echo "::group:: $directory"
31
cd "$directory" && npm install && cd -
32
+ echo "::endgroup::"
33
done
34
35
- name: 🧹 Check code formatting with Prettier
0 commit comments