Skip to content

[create-pull-request] automated change (#1185) #1599

[create-pull-request] automated change (#1185)

[create-pull-request] automated change (#1185) #1599

Workflow file for this run

name: Markdownlint
on:
push:
branches:
- draft-v6
- draft-v7
- draft-v8
paths:
- "standard/*.md"
- ".markdownlint.json"
pull_request:
paths:
- "standard/*.md"
- ".markdownlint.json"
workflow_dispatch:
inputs:
reason:
description: 'The reason for running the workflow'
required: true
default: 'Manual run'
jobs:
lint:
runs-on: ubuntu-latest
permissions:
statuses: write
steps:
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
- name: Use Node.js
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version: 16.x
- name: Run Markdownlint
run: |
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json"
npm i -g markdownlint-cli
markdownlint "standard/*.md"