Skip to content

ci: add mapping version for agent 26.1.1 #344

ci: add mapping version for agent 26.1.1

ci: add mapping version for agent 26.1.1 #344

Workflow file for this run

name: Lint PRs
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
- labeled
workflow_dispatch:
jobs:
shellcheck-pr:
runs-on: ubuntu-latest
name: PR - Shellcheck
steps:
- uses: actions/checkout@v6
- uses: reviewdog/[email protected]
with:
reporter: github-pr-review
fail_level: error
pattern: |
*.bash
*.sh
exclude: |
*/.git/*
./source/*
actionlint-pr:
runs-on: ubuntu-latest
name: PR - Actionlint
steps:
- uses: actions/checkout@v6
- 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
check-orphaned-docs:
runs-on: ubuntu-latest
name: PR - Check Orphaned Documentation
steps:
- uses: actions/checkout@v6
- name: Check for orphaned markdown files
run: bash ./scripts/check-orphaned-docs.sh
shell: bash