feat(zsh): add alias for git ignore #816
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: Shell Check | |
on: push | |
jobs: | |
shellcheck: | |
name: Shell Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ludeeus/action-shellcheck@master | |
env: | |
SHELLCHECK_OPTS: -e SC1090 -e SC2034 -e SC2154 -e SC2317 | |
with: | |
ignore_paths: zsh | |
- name: Ban echo | |
run: | | |
! grep 'echo' install.sh |