Skip to content

remove truncation when convert html to markdown #369

remove truncation when convert html to markdown

remove truncation when convert html to markdown #369

Workflow file for this run

name: TypeScript Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Remove version from package-lock.json
run: jq 'del(.version, .packages[""].version)' package-lock.json > normalized-package-lock.json
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
cache-dependency-path: normalized-package-lock.json
- run: npm ci
- name: Type check with TypeScript
run: npm run typecheck
env:
CI: true