build(deps): bump tslib from 2.6.3 to 2.8.0 #13634
Workflow file for this run
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 Markdown links | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
markdown-link-check: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'Skip Markdown Link Check') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: '.github/workflows/markdown_link_checker_config.json' | |
folder-path: 'packages' | |
- name: Ensure markdown links are only to main GitHub branches | |
run: 'grep --include="*.md" --exclude-dir=node_modules -Er "\/(tree|blob)" | (! grep -vE "\/(tree|blob)\/(main|master|HEAD)")' |