[NOJIRA] Add versioning step to update lock file #124
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: Lint GHA Files | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Lint files | |
uses: actions/checkout@v3 | |
- run: echo "Running shell script lint!" | |
- run: find . -name "*.sh" -type f | xargs -I {} shellcheck --severity=error {} | |
- run: echo "Running yml file lint!" | |
- run: find . -name "*.yml" -type f | xargs -I {} yamllint {} |