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