DS-1245 Refactor TOC component and update styles to make it sticky #7354
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: PR Links | |
on: | |
push: | |
pull_request: | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
args: > | |
--accept 200,204,206,401,403,421,429 | |
--verbose | |
--exclude http://localhost:8000/ | |
"*.md" | |
"source/**/*.md" | |
--timeout 20 | |
fail: false | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |