mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
19 lines
284 B
YAML
19 lines
284 B
YAML
name: JSON check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.json'
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: json-syntax-check
|
|
uses: limitusus/json-syntax-check@v1
|
|
with:
|
|
pattern: "\\.json$"
|
|
|