We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79781e5 commit b1c3541Copy full SHA for b1c3541
PinkSea.Frontend/.github/workflows/validate-schema.yml
@@ -0,0 +1,19 @@
1
+jobs:
2
+ validate-pinksea-lexicons-workflow:
3
+ name: Validate PinkSea lexicons
4
+ permissions:
5
+ contents: read
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Check for any changed lexicons
9
+ id: check-for-changed-lexicons
10
+ uses: tj-actions/changed-files@v41
11
+ with:
12
+ files: |
13
+ PinkSea.Lexicons/**/*.json
14
+ - name: Validate lexicon schema
15
+ if: steps.check-for-changed-lexicons.outputs.any_changed == 'true'
16
+ uses: dsanders11/json-schema-validate-action
17
18
+ schema: https://internect.info/lexicon-schema.json
19
+ files: PinkSea.Lexicons/**/*.json
0 commit comments