Add Liquidity
entity in subgraph and takerTokenFeeFilledAmount
field
#225
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |