Skip to content

Fix/liquidity indexing issues #237

Fix/liquidity indexing issues

Fix/liquidity indexing issues #237

Workflow file for this run

name: PR check
on: [pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install modules
run: yarn
- name: Run prettier check
run: yarn run prettier "./**/*.{js,json,ts}" --check
test-unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install modules
run: yarn
- name: Generate default config file
run: yarn generate-config:local
- name: Build subgraph schema classes
run: yarn codegen
- name: Run unit tests
run: yarn test