Skip to content

Commit 90ea2d9

Browse files
committed
debug
1 parent 390003f commit 90ea2d9

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/app-tests.yaml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
node-version-file: '.nvmrc'
3939
cache: 'pnpm'
4040
cache-dependency-path: |
41-
pnpm-lock.yaml
4241
package.json
4342
src/**/package.json
4443
test_apps/encore-app/package.json
@@ -71,7 +70,7 @@ jobs:
7170
for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))' | jq -c '.[]'); do
7271
PACKAGE_ABSOLUTE_PATH=$(echo $PACKAGE | jq -r '.path')
7372
PACKAGE_RELATIVE_PATH=$(realpath --relative-to=. "$PACKAGE_ABSOLUTE_PATH")
74-
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL $PACKAGE_RELATIVE_PATH"
73+
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL file:$PACKAGE_RELATIVE_PATH"
7574
done
7675
echo "Installing packages: $PACKAGES_TO_INSTALL"
7776
pnpm add --save-dev $PACKAGES_TO_INSTALL
@@ -95,15 +94,6 @@ jobs:
9594
env:
9695
EXPECTED_PATTERN: ${{ matrix.ux-packages-source == 'php-vendor' && 'file:vendor/symfony/*' || 'link:../../src/*' }}
9796

98-
- run: |
99-
ls -l node_modules
100-
pnpm list --depth 0
101-
ls -l node_modules/
102-
pnpm install
103-
pnpm list --depth 0
104-
ls -l node_modules/
105-
working-directory: test_apps/encore-app
106-
10797
- name: Ensure project can be built in dev mode
10898
working-directory: test_apps/encore-app
10999
run: pnpm run dev

0 commit comments

Comments
 (0)