chore(actions): create json linter

This commit is contained in:
omo50
2026-03-14 21:44:10 -06:00
parent 3f78a92f49
commit ea1ba71414

View File

@@ -0,0 +1,19 @@
name: JSON linter
on:
push:
branches: [ "main" ]
paths:
- '**/*.json'
pull_request:
paths:
- '**/*.json'
jobs:
lint:
runs-on: technocality
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Lint JSON
run: find . -name "*.json" | xargs -I{} jq empty {}