Skip to content

Fix bug causing current value in open shorts to display 0, polish Yield Source Market cards #176

Fix bug causing current value in open shorts to display 0, polish Yield Source Market cards

Fix bug causing current value in open shorts to display 0, polish Yield Source Market cards #176

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
task: [format, lint, typecheck, test]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run ${{ matrix.task }}
run: yarn ${{ matrix.task }}