Skip to content

ensure ctx created via renderToString has rootNode set #92

ensure ctx created via renderToString has rootNode set

ensure ctx created via renderToString has rootNode set #92

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Make
run: sudo apt-get install make
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Build
run: make build
- name: Test
run: make test