We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feefa31 commit 8f70ce3Copy full SHA for 8f70ce3
1 file changed
.github/workflows/ci.yml
@@ -250,6 +250,15 @@ jobs:
250
vp --version
251
vp -h
252
253
+ - name: Verify env file is POSIX-compatible (dash)
254
+ if: runner.os == 'Linux'
255
+ shell: sh
256
+ run: |
257
+ # On Ubuntu, /bin/sh is dash. `sh -n` does syntax-only check.
258
+ # This catches Zsh-specific syntax that would break desktop login.
259
+ sh -n "$HOME/.vite-plus/env"
260
+ echo "env file parses successfully under $(readlink -f /bin/sh)"
261
+
262
- name: Run vp check
263
run: vp check
264
0 commit comments