Skip to content

Rendering array children when no conditional node is present #3

Rendering array children when no conditional node is present

Rendering array children when no conditional node is present #3

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun install
- name: Build
run: bun run build
- name: Test
run: bun run test --ci --coverage --maxWorkers=2