dots/.github/workflows/jsonlint.yml
renovate[bot] 827dfb31f4 CI(deps): Pin dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-02 06:07:01 +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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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)