Skip to content

Tweak/correct partial types and methods (#1271) #1796

Tweak/correct partial types and methods (#1271)

Tweak/correct partial types and methods (#1271) #1796

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@ee0669bd1cc54295c223e0bb666b733df41de1c5
- name: Use Node.js
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a
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"