Merge pull request #471 from Open-Cap-Table-Coalition/JSv4/add-option… #478
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: Write OCF Schema File Copyright Notices | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
enforce-ocf-schema-file-copyright-notices: | |
name: Write OCF Schema File Copyright Notices | |
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: Check for coypright notices | |
run: npm run schema:enforce-copyright-notices | |
- name: Prettier Fix Formatting | |
run: npm run lint:fix |