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 8d3a521 commit 651bb0cCopy full SHA for 651bb0c
.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