Skip to content

Commit

Permalink
chore(ci): install zsh on canary gh action (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar authored Jun 21, 2022
1 parent 8b78a52 commit a464b58
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,18 @@ jobs:
with:
deno-version: ${{ matrix.deno }}

- name: Setup zsh
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install zsh -y

- name: Print Versions
run: |
which deno
deno --version
which bash
bash --version
which zsh
zsh --version
- name: Run tests
run: deno test --unstable --shuffle --allow-all --jobs 8

0 comments on commit a464b58

Please sign in to comment.