We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7484128 commit 911249fCopy full SHA for 911249f
.github/workflows/json_generation.yml
@@ -0,0 +1,20 @@
1
+name: Frontend JSON Generation
2
+on:
3
+ push:
4
+ pull_request:
5
+jobs:
6
+ generation:
7
+ runs-on: debian-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v4
11
+ - name: Python setup
12
+ uses: actions/setup-python@v5
13
+ with:
14
+ python-version: '3.x'
15
+ - name: Install requirements
16
+ run: pip install -r requirements.txt
17
+ - name: Validate YAMLs
18
+ run: make -j$(nproc) validate
19
+ - name: Generate JSONs
20
+ run: make O=./build -j$(nproc)
0 commit comments