wip: db indexer #8
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: Subgraph CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
echo: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: echo | |
run: echo 'wip' | |
# build_and_test: | |
# name: Build and Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Use Node.js 16.x | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16.x | |
# - name: Install yarn | |
# run: npm install -g yarn | |
# - run: yarn install | |
# - run: yarn build | |
# - name: Prepare subgraph yaml | |
# run: yarn prepare:mainnet | |
# - name: Generate Code | |
# run: yarn codegen | |
# - name: Run tests | |
# run: yarn test | |
# - name: Uninstall Yarn | |
# if: always() | |
# run: npm uninstall -g yarn |