Merge pull request #141 from tegonal/feature/warn-if-command-after-help #620
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: "Code Quality" | |
on: [ push, pull_request ] | |
jobs: | |
CodeQuality: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install shellcheck 0.9.0 | |
run: ./src/ci/install-shellcheck.sh | |
- name: Install shellspec | |
run: ./src/ci/install-shellspec.sh | |
- name: before pr | |
run: ./scripts/before-pr.sh | |
- name: check for TODOs | |
uses: tegonal/[email protected] | |
with: | |
commands: todo-checker |