Improving iOS docs around Capture Services #279
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: CI - Check Links | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
lychee: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- uses: lycheeverse/lychee-action@v2 | |
with: | |
args: "--verbose --no-progress --cache --max-cache-age 1d docs/" | |
fail: true | |
- name: Add output as PR comment | |
uses: embrace-io/actions-comment-pull-request@v2 | |
with: | |
comment_tag: lychee | |
filePath: lychee/out.md |