-
Notifications
You must be signed in to change notification settings - Fork 22
38 lines (32 loc) · 1.17 KB
/
validate-config.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
34
35
36
37
38
name: Validate configuration files
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- 'main'
jobs:
validate_json_files:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Or your preferred version
- name: Install dependencies
run: npm install
- name: Validate JSON files
run: |
git fetch origin main
export BASE_SHA=$(git rev-parse origin/main)
export HEAD_SHA=$(git rev-parse HEAD)
echo $BASE_SHA
echo $HEAD_SHA
git diff --quiet $BASE_SHA $HEAD_SHA -- config.json || (echo "file config.json must not change" && exit 1)
CHANGED_PROTOCOLS=$(git diff --name-only $BASE_SHA $HEAD_SHA -- 'protocols/*' | grep '^protocols/' | xargs -L1 dirname | sed 's|protocols/||' | sort -u)
CHANGED_PROTOCOLS=$CHANGED_PROTOCOLS node validate-config.js
env:
GET_ASSET_LIST_URL: https://api-v2.pendle.finance/core/v1/querier/simplified-data