Update Schema Definitions and Documentation to support the Satisfaction Scale #88
This file contains 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: PR | |
'on': | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-and-validate: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node dependencies | |
run: npm install | |
- name: Lint JS/JSON files | |
run: npm run lint | |
- name: Validate JSON schemas | |
if: always() | |
run: ./scripts/validate-schemas.js | |