Skip to content

Bump markdown-it from 13.0.1 to 13.0.2 #11

Bump markdown-it from 13.0.1 to 13.0.2

Bump markdown-it from 13.0.1 to 13.0.2 #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_call:
workflow_dispatch:
jobs:
lint:
name: Lint files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm run lint
test:
name: Test files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm test