Skip to content

Commit

Permalink
Add CI action to check links in README
Browse files Browse the repository at this point in the history
  • Loading branch information
vanous committed Jun 22, 2023
1 parent 0ac1977 commit 7ac4c2b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check links in markdown

on: push

jobs:
convert_via_pandoc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: List files
run: ls -la
- uses: docker://pandoc/core:2.9
with:
args: >- # allows you to break string into multiple lines
--standalone
--from markdown
--output=readme.html
README.md
- name: Run htmltest
uses: wjdp/htmltest-action@master
with:
path: readme.html

0 comments on commit 7ac4c2b

Please sign in to comment.