Skip to content

Disable markdown based linting by default #622

Disable markdown based linting by default

Disable markdown based linting by default #622

Workflow file for this run

name: main
on:
- push
- pull_request
jobs:
test:
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v4
if: ${{matrix.os == 'ubuntu-latest' && matrix.node == 20}}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node:
- 18
- 20