Skip to content

fix: Remove test

fix: Remove test #78

Workflow file for this run

name: Check Links
on:
push:
branches:
- main
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
# I had an issue here where the node-version needed to be above '14'
node-version: '18'
- name: Install Dependencies
run: npm install -g markdown-link-check
- name: Check Links
run: markdown-link-check -q ./*.md -c mdlinkcheckconfig.json && markdown-link-check ./**/*.md -q -c mdlinkcheckconfig.json