We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 490f3d8 commit dc16d32Copy full SHA for dc16d32
.github/workflows/cli-release-build.yml
@@ -89,6 +89,13 @@ jobs:
89
- name: Install dependencies
90
run: bun install --frozen-lockfile
91
92
+ - name: Link workspace node_modules
93
+ shell: bash
94
+ run: |
95
+ if [ ! -e cli/node_modules ]; then
96
+ ln -s ../node_modules cli/node_modules
97
+ fi
98
+
99
- name: Configure environment variables
100
env:
101
SECRETS_CONTEXT: ${{ toJSON(secrets) }}
0 commit comments