feat: performance improvements to batch delegator update #7
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
name: Testnet Subgraph L2 (Arbitrum-Goerli) | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Install commands | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
registry-url: https://registry.npmjs.org | |
- name: yarn add ts-node | |
run: yarn add ts-node | |
- name: yarn install | |
run: yarn install | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.graphprotocol_npm_token}} | |
# Run scripts | |
- name: Prepare addresses arbitrum goerli | |
run: ./node_modules/.bin/ts-node config/goerliArbitrumAddressScript.ts && ./node_modules/.bin/mustache ./config/generatedAddresses.json ./config/addresses.template.ts > ./config/addresses.ts | |
- name: Prepare arbitrum goerli | |
run: ./node_modules/.bin/mustache ./config/generatedAddresses.json subgraph.template.yaml > subgraph.yaml && ./node_modules/@graphprotocol/graph-cli/bin/run codegen --output-dir src/types/ | |
- name: Deploy to testnet rinkeby | |
run: ./node_modules/@graphprotocol/graph-cli/bin/run deploy graphprotocol/gn-analytics-arbitrum-devnet --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --access-token ${{secrets.access_token}} |