2024-06-16 10:34:23 +02:00
|
|
|
---
|
|
|
|
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'
|
2024-07-02 05:14:17 +02:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2024-06-16 10:34:23 +02:00
|
|
|
- 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)
|