chore: Migrate to neostandard #1266
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: Internal Links Check | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '*.md' | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
# It will be possible to check only for the links in the changed files | |
# See: https://github.com/lycheeverse/lychee-action/issues/17 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 | |
with: | |
fail: true | |
# As external links behavior is not predictable, we check only internal links | |
# to ensure consistency. | |
# See: https://github.com/lycheeverse/lychee-action/issues/17#issuecomment-1162586751 | |
args: --offline --verbose --no-progress './**/*.md' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |