Add urls to v1 and v2 yml files to fix missing urls #694
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-mdx-frontmatter | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'fern/pages/**/*.mdx' | |
- 'fern/pages/**/**/*.mdx' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Dependencies | |
shell: bash | |
run: pnpm install | |
- name: Run MDX frontmatter check | |
run: node .github/scripts/check-mdx-frontmatter.cjs |