Skip to content

fix: use SDF to draw rect only when all the radius are the same #1367 #1767

fix: use SDF to draw rect only when all the radius are the same #1367

fix: use SDF to draw rect only when all the radius are the same #1367 #1767

Workflow file for this run

name: CI
on: ['push', 'pull_request']
jobs:
lint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup Nodejs and npm
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Lint
run: yarn run lint
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup Nodejs and npm
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn run build
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup Nodejs and npm
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn run build
- name: Test
run: yarn run test
- name: Cov
run: |
yarn run cov
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}