File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 38
38
node-version-file : ' .nvmrc'
39
39
cache : ' pnpm'
40
40
cache-dependency-path : |
41
- pnpm-lock.yaml
42
41
package.json
43
42
src/**/package.json
44
43
test_apps/encore-app/package.json
71
70
for PACKAGE in $(cd ../..; pnpm ls -r --json --depth -1 | jq 'map(select(.private != true))' | jq -c '.[]'); do
72
71
PACKAGE_ABSOLUTE_PATH=$(echo $PACKAGE | jq -r '.path')
73
72
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"
75
74
done
76
75
echo "Installing packages: $PACKAGES_TO_INSTALL"
77
76
pnpm add --save-dev $PACKAGES_TO_INSTALL
95
94
env :
96
95
EXPECTED_PATTERN : ${{ matrix.ux-packages-source == 'php-vendor' && 'file:vendor/symfony/*' || 'link:../../src/*' }}
97
96
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
-
107
97
- name : Ensure project can be built in dev mode
108
98
working-directory : test_apps/encore-app
109
99
run : pnpm run dev
You can’t perform that action at this time.
0 commit comments