fix: inconsistent links: lifeCycleStage -> lifecycleStage #23
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: Validate | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
validate: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm i | |
- name: Validate vocab links | |
run: pnpm run validate:vocab-links | |
- name: Validate JSON-LD | |
run: pnpm run validate:jsonld |