Skip to content

Add Liquidity entity in subgraph and takerTokenFeeFilledAmount field #226

Add Liquidity entity in subgraph and takerTokenFeeFilledAmount field

Add Liquidity entity in subgraph and takerTokenFeeFilledAmount field #226

on:
pull_request:
paths:
- packages/*-subgraph/**/*
name: Deploy Staging subgraph
jobs:
pr:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache Modules
id: cache-modules
uses: actions/cache@v2
with:
path: |
**/node_modules
node_modules
key: ${{ hashFiles('**/yarn.lock', '**/package.json', 'yarn.lock') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn
- name: Authenticate the graph and deploy
env:
THEGRAPH_ACCESS_TOKEN: ${{ secrets.THEGRAPH_ACCESS_TOKEN_TEST }}
run: |
yarn graph:auth
# yarn turbo run deploy-staging --scope="@diva/*-subgraph"