fix grep where we should have used --fixed-strings #169
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: Quality Assurance | |
on: [ push, pull_request ] | |
jobs: | |
before_pr: | |
name: before-pr.sh | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install shellcheck | |
run: ./src/ci/install-shellcheck.sh | |
- name: Install shellspec | |
run: ./src/ci/install-shellspec.sh | |
- name: before-pr.sh | |
run: ./scripts/before-pr.sh | |
todo_checker: | |
name: check for TODOs | |
runs-on: ubuntu-latest | |
steps: | |
- name: check for TODOs | |
uses: tegonal/[email protected] | |
with: | |
commands: todo-checker |