We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f6a5d8 commit 2da19aeCopy full SHA for 2da19ae
2 files changed
.github/workflows/arduino-lint.yml
@@ -0,0 +1,10 @@
1
+on: [push, pull_request]
2
+jobs:
3
+ lint:
4
+ runs-on: ubuntu-latest
5
+ steps:
6
+ - uses: actions/checkout@v2
7
+ - uses: arduino/arduino-lint-action@v1
8
+ with:
9
+ library-manager: update
10
+ compliance: strict
.github/workflows/jsoncheck.yml
@@ -1,10 +1,18 @@
-on: [push, pull_request]
+name: JSON check
+
+on:
+ push:
+ paths:
+ - '**.json'
+ pull_request:
jobs:
- lint:
+ test:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
- - uses: arduino/arduino-lint-action@v1
-# with:
-# library-manager: update
-# compliance: strict
14
+ - name: json-syntax-check
15
+ uses: limitusus/json-syntax-check@v1
16
17
+ pattern: "\\.json$"
18
0 commit comments