Skip to content

chore(deps): bump the github-actions group across 1 directory with 10 updates #27

chore(deps): bump the github-actions group across 1 directory with 10 updates

chore(deps): bump the github-actions group across 1 directory with 10 updates #27

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Markdown lint
uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1
with:
args: 'docs/**/*.md README.md CONTRIBUTING.md SECURITY.md'
- name: Link check
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
with:
args: '--verbose --no-progress docs/**/*.md README.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Verify Mermaid blocks
run: grep -rl '```mermaid' docs README.md
- name: Validate JSON formatting
run: |
find impl -name '*.json' -print0 |
xargs -0 -n1 jq empty
- name: Install Bicep CLI
run: az bicep install
- name: Validate repository contracts
run: bash scripts/validate-repository.sh