Merge pull request #530 from Open-Cap-Table-Coalition/jake/issue#373-… #571
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: Check Example OCF Files | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check-example-ocf-files: | |
name: Check Example OCF Files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: ".nvmrc" | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm install | |
- name: Ensure Examples Exist for each Object Type | |
run: npm run schema:validate-all-objects-have-samples | |
- name: Run Validation Script | |
run: npm run schema:validate-example-ocf-files |