Skip to content

Commit

Permalink
Merge pull request #4 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
Add Markdown link checker
  • Loading branch information
felixarntz authored Oct 28, 2024
2 parents 257c8ea + 63f1e4d commit 43f7ab4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: Markdown

on:
push:
branches:
- main
paths:
- '.github/workflows/markdown.yml'
- '**.md'
pull_request:
branches:
- main
paths:
- '.github/workflows/markdown.yml'
- '**.md'
types:
- opened
- reopened
- synchronize

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
links:
name: Links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4

- uses: lycheeverse/lychee-action@v1
with:
output: '${{ runner.temp }}/lychee/out.md'
fail: true

0 comments on commit 43f7ab4

Please sign in to comment.