Show ETT search box (display only, no JS) #1199
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: validate-live-deploys | |
| on: [push] | |
| jobs: | |
| json-schema-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| - run: npm install -g ajv-cli | |
| - run: npm install -g ajv-formats | |
| - run: ajv -c ajv-formats -s _data/live_deployments_schema.json -d _data/live_deployments.json |