Skip to content

feat: add native markdown parsing support with parseHTML #86

feat: add native markdown parsing support with parseHTML

feat: add native markdown parsing support with parseHTML #86

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: 'Build & Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack (PNPM from packageManager)
run: |
corepack enable
corepack prepare pnpm@8.15.8 --activate
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
HUSKY: 0
- name: Typecheck
run: pnpm -w typecheck
- name: Build
run: pnpm -w build
- name: Test
run: pnpm -w test --reporter verbose