Skip to content

Fixed rounding issue with recovery #471

Fixed rounding issue with recovery

Fixed rounding issue with recovery #471

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
steps:
- name: Setup Repo
uses: actions/checkout@v3
- name: Uses node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install all workspaces
run: yarn install --immutable
- name: Seutp workspaces
run: yarn workspaces foreach run compile
- name: Lint
run: yarn workspaces foreach run lint
- name: Test
run: yarn workspaces foreach run test