constellation/.github/workflows/check-links.yml

27 lines
425 B
YAML
Raw Normal View History

2022-09-02 05:52:42 -04:00
name: Links
on:
push:
branches:
- main
paths:
- "**.md"
- "**.html"
2022-09-02 05:52:42 -04:00
pull_request:
paths:
- "**.md"
- "**.html"
2022-09-02 05:52:42 -04:00
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Link Checker
uses: lycheeverse/lychee-action@v1.5.1
2022-09-02 05:52:42 -04:00
with:
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}