-
Notifications
You must be signed in to change notification settings - Fork 13
36 lines (28 loc) · 964 Bytes
/
pr-checks.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
name: "PR checks"
on:
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
validate-schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Use ajv to validate schema
- name: Setup node
uses: actions/[email protected]
- name: Validate schema
run: make ajv-validate-flagd-schema
# Run go test suite to validate the json schema against positive and/or negative validations in /json/test
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Validate Schema
run: make test
# Ensure there is no diff when make gen-schema-json is run
- run: make gen-schema-json
- name: Check no diff
run: |
if [ ! -z "$(git status --porcelain)" ]; then echo "JSON schema generation produced diff. Run 'make gen-schema-json' and commit results."; exit 1; fi