We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6703e7 commit 11c9abbCopy full SHA for 11c9abb
1 file changed
.github/workflows/setup-and-install.yml
@@ -163,4 +163,9 @@ jobs:
163
- name: Install dependencies
164
shell: bash
165
working-directory: ${{ inputs.working-directory }}
166
- run: pnpm install --loglevel error
+ run: |
167
+ if [ -z "$SFW_BIN" ] || [ ! -x "$SFW_BIN" ]; then
168
+ echo "Error: sfw is not set up — run the setup action first" >&2
169
+ exit 1
170
+ fi
171
+ pnpm install --loglevel error
0 commit comments