Skip to content

Commit 679c94b

Browse files
ci: add JSON Schema validation (#4122)
* ci: add JSON Schema validation Leverage the json-schema-check action from the autoware-github-actions repository. Issue-Id: SCM-6366 Signed-off-by: Ambroise Vincent <ambroise.vincent@arm.com> Change-Id: I5f284e96b2eddc652a6da8c0338f92c411277c04 * Update .github/workflows/json-schema-check.yaml Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> --------- Signed-off-by: Ambroise Vincent <ambroise.vincent@arm.com> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
1 parent 1bf5056 commit 679c94b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: json-schema-check
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "**/schema/*.schema.json"
7+
- "**/config/*.param.yaml"
8+
9+
jobs:
10+
json-schema-check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out repository
14+
uses: actions/checkout@v3
15+
16+
- name: Run json-schema-check
17+
uses: autowarefoundation/autoware-github-actions/json-schema-check@v1

0 commit comments

Comments
 (0)