Skip to content

refactor: migrate package #5

refactor: migrate package

refactor: migrate package #5

Workflow file for this run

name: 'Test'
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version-file: '.nvmrc'
- run: yarn install --frozen-lockfile
- run: yarn test --coverage
- uses: codecov/codecov-action@v3