Skip to content

Bump markdown-it from 14.1.1 to 14.2.0 #48

Bump markdown-it from 14.1.1 to 14.2.0

Bump markdown-it from 14.1.1 to 14.2.0 #48

Workflow file for this run

name: test
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
tests:
name: Test Node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [14, 20, 22, 24]
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6
with:
node-version: '${{ matrix.node_version }}'
- name: Tests
run: |
yarn
yarn run dist-test
yarn test-ci
yarn cover
- uses: coverallsapp/github-action@master
if: ${{ matrix.node_version == '24' }}
with:
path-to-lcov: ./coverage/lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}