Skip to content

Installation page, image assessment chart and filters, fixed some bugs #130

Installation page, image assessment chart and filters, fixed some bugs

Installation page, image assessment chart and filters, fixed some bugs #130

Workflow file for this run

name: Unit test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Setup yarn
run: npm install -g yarn
- name: Setup Nodejs with yarn caching
uses: actions/setup-node@v3
with:
node-version: '20'
cache: yarn
- name: Install dependencies
run: yarn
- name: Run tests and collect coverage
run: npm run test:ci
- name: Upload Unit-tests coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
name: unit-tests
directory: coverage
flags: unit-tests
verbose: true