Fix regex pattern in _nvm_list to correctly match version directory n… #124
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: CI | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Fish | |
run: | | |
sudo apt-add-repository -yn ppa:fish-shell/release-3 | |
sudo apt-get update | |
sudo apt-get install -y fish | |
- name: Install Tools | |
run: | | |
curl -sL https://git.io/fisher | source | |
fisher install $GITHUB_WORKSPACE jorgebucaran/fishtape | |
fishtape tests/* | |
shell: fish {0} |