Remove API Reference from CLI & API Reference section #34
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: Vale style check | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.mdx' | |
| - '**.md' | |
| - '.vale/**' | |
| - '.vale.ini' | |
| jobs: | |
| vale: | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.event.pull_request.user.login != 'fern-support' && | |
| github.event.pull_request.user.login != 'github-actions' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: errata-ai/vale-action@reviewdog | |
| with: | |
| files: fern | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |