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

27 lines
497 B
YAML
Raw Normal View History

2022-09-02 09:52:42 +00:00
name: Links
on:
push:
branches:
- main
paths:
- "**.md"
- "**.html"
2022-09-02 09:52:42 +00:00
pull_request:
paths:
- "**.md"
- "**.html"
2022-09-02 09:52:42 +00:00
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
2022-09-09 07:51:42 +00:00
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e
2022-09-02 09:52:42 +00:00
- name: Link Checker
2022-09-09 07:51:42 +00:00
uses: lycheeverse/lychee-action@4a5af7cd2958a2282cefbd9c10f63bdb89982d76
2022-09-02 09:52:42 +00:00
with:
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}