mirror of
https://github.com/azure/login.git
synced 2026-03-12 18:07:08 -04:00
19 lines
359 B
YAML
19 lines
359 B
YAML
name: Markdownlint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
- name: Run Markdownlint
|
|
run: |
|
|
npm i -g markdownlint-cli2
|
|
markdownlint-cli2 "**/*.md"
|