fix: installing latest version of pnpm #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install on macOS | |
on: | |
- push | |
- pull_request | |
jobs: | |
install: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
shell: | |
- bash | |
- dash | |
- ksh | |
- sh | |
- zsh | |
script: | |
- install.sh | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install shell | |
run: brew install ${{ matrix.shell }} | |
if: ${{ matrix.shell == 'ksh' || matrix.shell == 'dash' }} | |
- name: Run installation script | |
run: ENV="~/.${{ matrix.shell }}rc" SHELL="$(which ${{ matrix.shell }})" ${{ matrix.shell }} ${{ matrix.script }} |