Remove redundant internal type exports #2458
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: Check Markdown links | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths: | |
| # Any markdown across the monorepo | |
| - '**/*.md' | |
| - '**/*.mdx' | |
| # This workflow and its config | |
| - '.github/workflows/markdown-link-check.yml' | |
| - '.github/workflows/markdown-link-check.json' | |
| # Automatically cancel in-progress actions on the same branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Check Markdown links | |
| uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # v1 | |
| with: | |
| config-file: .github/workflows/markdown-link-check.json | |
| use-quiet-mode: 'yes' | |
| use-verbose-mode: 'yes' |