Skip to content

chore(ecosystem): Add Fastify asyncforge plugin #1170

chore(ecosystem): Add Fastify asyncforge plugin

chore(ecosystem): Add Fastify asyncforge plugin #1170

Workflow file for this run

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@c053181aa0c3d17606addfe97a9075a32723548a
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}}