Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -960,8 +960,17 @@ jobs:
- name: Install Global CLI vp
run: pnpm bootstrap-cli:ci

- name: Install Fish
uses: fish-actions/install-fish@4bb37a71daebb76c6fb7d83771cff31b8a78c28e # v1.2.0
- name: Ensure Fish is installed
run: |
if ! command -v fish >/dev/null 2>&1; then
if [ "$RUNNER_OS" = 'Linux' ]; then
sudo apt-get update
sudo apt-get install --yes fish
else
brew install fish
fi
fi
fish --version

- name: Ensure Zsh is installed
run: |
Expand Down
Loading