Skip to content

Commit

Permalink
CI to validate json files (#40)
Browse files Browse the repository at this point in the history
* Create schema.json

* add workflow

* update workflow

* fix typo
  • Loading branch information
Max-3-7 authored Jan 27, 2024
1 parent 0003b7b commit 035f910
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/validate-json.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Validate JSON

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
validate:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"

- name: Install AJV CLI
run: npm install -g ajv-cli

- name: Validate rewards.json
run: ajv validate -s schema_rewards.json -d './rewards.json' --strict=false

- name: Validate epochs.json
run: ajv validate -s schema_epochs.json -d './epochs.json' --strict=false
14 changes: 14 additions & 0 deletions schema_epochs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"epoch": { "type": "integer", "minimum": 1 },
"start": { "type": "string", "format": "date-time" },
"end": { "type": "string", "format": "date-time" }
},
"required": ["epoch", "start", "end"],
"additionalProperties": false
}
}
16 changes: 16 additions & 0 deletions schema_rewards.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"epoch": { "type": "number" },
"chain": { "type": "string", "enum": ["Avax", "Arbitrum", "BNB"] },
"poolId": { "type": "string", "pattern": "^\\S*$" },
"rewardPerDay": { "type": "number" },
"rewardToken": { "type": "string", "pattern": "^\\S*$" }
},
"required": ["epoch", "chain", "poolId", "rewardPerDay", "rewardToken"],
"additionalProperties": false
}
}

0 comments on commit 035f910

Please sign in to comment.