From 5f53f0d0652224b19df5e602b0882bb8a8f5742b Mon Sep 17 00:00:00 2001 From: Luong Vo Date: Sat, 22 Oct 2022 17:54:32 +0700 Subject: [PATCH] add a markdown link checker --- .github/workflows/action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..04a60dc --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,10 @@ +name: Check Markdown links + +on: push + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1