We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a223c commit aae717dCopy full SHA for aae717d
.github/workflows/ci-test.yml
@@ -5,13 +5,21 @@ on:
5
6
jobs:
7
8
- json-lint:
+ json-lint-nodes:
9
runs-on: ubuntu-latest
10
- name: 'JSON lint'
+ name: 'JSON lint nodes'
11
steps:
12
- uses: actions/checkout@v3
13
- run: docker pull cytopia/jsonlint
14
- - run: docker run --rm -t -v $(pwd):/data cytopia/jsonlint -t ' ' '*.json'
+ - run: docker run --rm -t -v $(pwd):/data cytopia/jsonlint -t ' ' 'node/*.json'
15
+
16
+ json-lint-relations:
17
+ runs-on: ubuntu-latest
18
+ name: 'JSON lint relations'
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - run: docker pull cytopia/jsonlint
22
+ - run: docker run --rm -t -v $(pwd):/data cytopia/jsonlint -t ' ' 'relation/*.json'
23
24
markdown-lint:
25
0 commit comments