Amoy testnet #182
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- SUBGRAPH_DIRECTORY: root | |
SUBGRAPH_NETWORK: goerli | |
- SUBGRAPH_DIRECTORY: root | |
SUBGRAPH_NETWORK: mainnet | |
- SUBGRAPH_DIRECTORY: child | |
SUBGRAPH_NETWORK: mumbai | |
- SUBGRAPH_DIRECTORY: child | |
SUBGRAPH_NETWORK: mainnet | |
defaults: | |
run: | |
working-directory: ${{ matrix.SUBGRAPH_DIRECTORY }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
check-latest: true | |
- name: Install npm package | |
run: npm install | |
- name: Check lint | |
run: npm run lint | |
- name: Prepare subgraph for ${{ matrix.SUBGRAPH_NETWORK }} | |
run: npm run prepare:${{ matrix.SUBGRAPH_NETWORK }} | |
- name: Generate code for subgraph | |
run: npm run codegen | |
- name: Build subgraph | |
run: npm run build |