feat(schamas): add required properties to objects and allowed logo sources #62
Workflow file for this run
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 CI | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.0 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint Check | |
run: pnpm lint | |
- name: Validate JSON files | |
run: | | |
pnpm validate:tokens | |
pnpm validate:vaults | |
pnpm validate:validators | |
- name: Check formatting | |
run: pnpm format --check |