Skip to content

chore(viz): remove type in JSDOC #1739

chore(viz): remove type in JSDOC

chore(viz): remove type in JSDOC #1739

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14.x", "16.17.1"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
- name: Bootstrap
run: npm run bootstrap
- name: Test
run: npm test