docs(seed-docs): in progress box toggle button, capsule toggle button… #68
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
on: | |
push: | |
branches: | |
- '**' | |
paths: | |
- 'docs/content/component/**/component-meta.json' | |
- 'docs/content/primitive/**/primitive-meta.json' | |
name: Validate Seed Docs meta data files | |
jobs: | |
build: | |
name: Validate meta data files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.1 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Validate meta data files | |
working-directory: ./docs | |
run: | | |
yarn validate:meta-data | |
- name: Report success | |
run: echo "Script ran successfully!" |