Skip to content

Commit 25accf4

Browse files
committed
debug
1 parent e90ee63 commit 25accf4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/app-tests.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@ jobs:
6969
name: Install UX JS packages with a JS package manager
7070
working-directory: test_apps/encore-app
7171
run: |
72-
echo $(cd ../..; pnpm ls -r --json --depth -1)
73-
jq --version
7472
PACKAGES_TO_INSTALL=''
75-
for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))'); do
73+
for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))' | jq -c '.[]'); do
7674
PACKAGE_DIR=../../$(echo $PACKAGE | jq -r '.path')
7775
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL $PACKAGE_DIR"
7876
done

0 commit comments

Comments
 (0)