mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-18 17:04:04 -08:00
16 lines
307 B
YAML
16 lines
307 B
YAML
|
name: Markdownlint
|
||
|
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Lint files
|
||
|
uses: nosborn/github-action-markdown-cli@v1.1.1
|
||
|
with:
|
||
|
files: .
|
||
|
config_file: "docs/.markdownlint.json"
|