-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (31 loc) · 1.12 KB
/
validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Validate JSONs
on: [pull_request]
jobs:
verify-json-validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate IBC JSON
uses: GrantBirki/[email protected]
with:
comment: "true"
json_schema: config/jsons/schemas/ibcChannels.schema.json
files: config/jsons/ibcChannels.json
- name: Validate Layer Zero JSON
uses: GrantBirki/[email protected]
with:
comment: "true"
json_schema: config/jsons/schemas/layerZeroChainIds.schema.json
files: config/jsons/layerZeroChainIds.json
- name: Validate Bridge Out Tokens
uses: GrantBirki/[email protected]
with:
comment: "true"
json_schema: config/jsons/schemas/bridgeOutTokens.schema.json
files: config/jsons/bridgeOutTokens.json
- name: Validate Bridge In Tokens
uses: GrantBirki/[email protected]
with:
comment: "true"
json_schema: config/jsons/schemas/bridgeInTokens.schema.json
files: config/jsons/bridgeInTokens.json