Skip to content

fix: Updated GraphicsResult docs #739

fix: Updated GraphicsResult docs

fix: Updated GraphicsResult docs #739

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
name: Tests Coverage
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run lint
run: yarn lint --fix
- name: Run Unit Tests
run: yarn test:unit:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}