Skip to content

doc(metrics): Make metrics related info easily accessible #22

doc(metrics): Make metrics related info easily accessible

doc(metrics): Make metrics related info easily accessible #22

name: Check links in modifed markdown documentation
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: "Validate links in updated markdown files"
run: |
git fetch origin
changedFiles=$(git diff origin/$GITHUB_BASE_REF.. --name-only)
mlc_installed=0
for file in $changedFiles; do
if [[ ".md" == ".${file##*.}" ]]; then
if [[ $mlc_installed == 0 ]]; then
# we install mlc instead of adding to devctr because
# it is small and hardly takes 2-3mins to install it
cargo install mlc
mlc_installed=1
fi
echo ${file};
mlc $file
fi
done