1377 the multiselect filter is displayed without a label and selectin… #19
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 for broken Links | |
on: | |
pull_request: | |
paths: | |
- '**.md' | |
push: | |
paths: | |
- '**.md' | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 🔗 Check Links | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
args: --config .github/lychee.toml './**/*.md' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |