update spec to v3.69.0 #666
Workflow file for this run
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 pull requests (or manually) | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| markdownlint: | |
| runs-on: ubuntu-latest | |
| name: PR - MarkdownLint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Markdown lint | |
| uses: actionshub/[email protected] | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| name: PR - ActionLint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Action lint | |
| run: | | |
| echo "::add-matcher::.github/actionlint-matcher.json" | |
| bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
| ./actionlint -color -shellcheck= | |
| shell: bash | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| name: PR - Shellcheck | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: PR - Shellcheck | |
| uses: ludeeus/action-shellcheck@master |