Skip to content
This repository has been archived by the owner on Sep 17, 2023. It is now read-only.

Update index.md

Update index.md #113

name: "Check Markdown"
on:
push:
branches: [ 'main' ]
paths:
- "**/*.md"
- ".github/workflows/check-markdown.yml"
pull_request:
branches: [ 'main' ]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
statuses: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Run Markdownlint
run: |
npm i
npx markdownlint-cli2 \
"TypedSpark.NET*/**/*.md" \
"TypedSpark.NET.Docs/**/*.md" \
"!TypedSpark.NET.Tests/**/__examples__/*.md" \
"!TypedSpark.NET.Docs/**/src/*.md" \
"*.md" \
"!LICENSE.md"