Skip to content

Fixed remaining priority issues #412

Fixed remaining priority issues

Fixed remaining priority issues #412

Workflow file for this run

name: Unit testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run test and generate coverage report
run: yarn test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3