Skip to content

Do not allow to parse link with multiline alias text when header markdown is leading #736

Do not allow to parse link with multiline alias text when header markdown is leading

Do not allow to parse link with multiline alias text when header markdown is leading #736

Workflow file for this run

name: Lint JavaScript
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm ci
- run: npm run lint
env:
CI: true