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

[DEPRECATED] Lint Markdown files with GitHub Actions

License

Notifications You must be signed in to change notification settings

articulate/actions-markdownlint

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

markdownlint action

Caution

This action is deprecated. Use DavidAnson/markdownlint-cli2-action or super-linter instead.

This action lints your Markdown files with markdownlint-cli.

Usage

Including the action without any defaults will find a local markdownlint config file (.markdownlint.{yaml,yml,json}) or use our included default and scan all files with the md or markdown extension.

- uses: articulate/actions-markdownlint@v1

You can set the config file, the files it scans, files/directories to ignore, or the version of markdownlint-cli to install.

- uses: articulate/actions-markdownlint@v1
  with:
    config: markdownlint-config.json
    files: 'docs/**/*.md'
    ignore: node_modules
    version: 0.28.1