Skip to content

FIX: If there is a single fence make it Horizontal #1484

FIX: If there is a single fence make it Horizontal

FIX: If there is a single fence make it Horizontal #1484

Workflow file for this run

name: CI
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest,windows-latest]
node-version: [12.x]
fail-fast: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true