docs: promote Docusaurus docs in promote_unstable_docs workflow #282
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: Github workflows linter | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/**" | |
| jobs: | |
| lint-workflows: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| - name: Install actionlint | |
| run: go install github.com/rhysd/actionlint/cmd/actionlint@latest | |
| - name: Run actionlint | |
| env: | |
| SHELLCHECK_OPTS: --exclude=SC2102 | |
| run: actionlint |