Pin asdf vm action to semver v4 #128
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| pull-requests: read | |
| contents: read | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install asdf dependencies | |
| uses: asdf-vm/actions/[email protected] | |
| - name: Run ShellCheck | |
| run: scripts/shellcheck.bash | |
| shellfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install asdf dependencies | |
| uses: asdf-vm/actions/[email protected] | |
| - name: List file to shfmt | |
| run: shfmt -f . | |
| - name: Run shfmt | |
| run: scripts/shfmt.bash | |
| commit: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v5 | |
| with: | |
| token: "${{ secrets.GITHUB_TOKEN }}" | |
| fetch-depth: 0 | |
| - name: Lint commits | |
| uses: highb/commitizen-check-action@main |