Skip to content

feat: Implement bezier interpolation for points #1321

feat: Implement bezier interpolation for points

feat: Implement bezier interpolation for points #1321

Workflow file for this run

name: Main
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Run tests with ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
yarn install
yarn lint
yarn build
yarn test
yarn build:demo
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}