Skip to content

test(isEllipse): add proper tests #4

test(isEllipse): add proper tests

test(isEllipse): add proper tests #4

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Packages
run: yarn install
- name: Test
run: yarn test --coverage
- name: Report coverage
uses: coverallsapp/github-action@v2
with:
allow-empty: true