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 e90ee63 commit 25accf4Copy full SHA for 25accf4
.github/workflows/app-tests.yaml
@@ -69,10 +69,8 @@ jobs:
69
name: Install UX JS packages with a JS package manager
70
working-directory: test_apps/encore-app
71
run: |
72
- echo $(cd ../..; pnpm ls -r --json --depth -1)
73
- jq --version
74
PACKAGES_TO_INSTALL=''
75
- for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))'); do
+ for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))' | jq -c '.[]'); do
76
PACKAGE_DIR=../../$(echo $PACKAGE | jq -r '.path')
77
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL $PACKAGE_DIR"
78
done
0 commit comments