dots/.github/workflows/jsonlint.yml
renovate[bot] e9e5363eb7 CI(deps): Update actions/checkout digest to 11bd719
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-24 09:54:03 +00:00

25 lines
548 B
YAML

---
name: JSON Lint
on:
push:
paths:
- '**.json'
- '.arc*'
- '**.sublime-settings'
pull_request:
paths:
- '**.json'
merge_group:
workflow_dispatch:
jobs:
jsonlint:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run JSON Lint
env:
REPORT_ONLY: true
SHOW_ERRORS: true
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/json-lint/master/pipeline.sh)