Skip to content

Fix #15 by resolving issues around rich text block elements #122

Fix #15 by resolving issues around rich text block elements

Fix #15 by resolving issues around rich text block elements #122

Workflow file for this run

name: CI Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Node.js (${{ matrix.node-version }})
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- name: Compile
run: npm i && npm run build
- name: Test
run: npm run ci-test