diff options
-rw-r--r-- | .github/.markdownlinkcheck.json | 7 | ||||
-rw-r--r-- | .github/workflows/linkcheck.yml | 14 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.github/.markdownlinkcheck.json b/.github/.markdownlinkcheck.json new file mode 100644 index 0000000..7e118b9 --- /dev/null +++ b/.github/.markdownlinkcheck.json @@ -0,0 +1,7 @@ +{ + "ignorePatterns": [ + { + "pattern": "https://help.ea.com/en/help/pc/link-ea-and-steam/" + } + ] +} diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml new file mode 100644 index 0000000..e97f01e --- /dev/null +++ b/.github/workflows/linkcheck.yml @@ -0,0 +1,14 @@ +name: Linkcheck +on: [push, pull_request] + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: md-linkcheck + uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + config-file: '.github/.markdownlinkcheck.json' |