-
Notifications
You must be signed in to change notification settings - Fork 50
59 lines (49 loc) · 1.38 KB
/
validation.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Translations - JSON Schema Validation
on:
pull_request:
branches:
- "*"
- "*/*"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
files: |
**/auth.json
- name: Install Dependencies
run: |
pip3 install jsonschema
npm install
- name: List all changed files
if: steps.changed-files.outputs.all_changed_files
run: |
echo "Changed files:"
echo "${{ steps.changed-files.outputs.all_changed_files }}"
- name: Validate JSON files
if: steps.changed-files.outputs.all_changed_files
run: |
python3 validate-json.py auth-schema.json ${{ steps.changed-files.outputs.all_changed_files }}
# DEPRECATED VALIDATION
# validate:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Install Node.js
# uses: actions/setup-node@v2
# with:
# node-version: 16
# - name: Install Dependencies
# run: |
# npm install
# pip3 install jsonschema
# - name: Validate auth.json translation files
# run: |
# python3 validate-json.py