Skip to content

docs: refresh descriptions in light of v2 #6

docs: refresh descriptions in light of v2

docs: refresh descriptions in light of v2 #6

Workflow file for this run

name: "CI"
on:
push:
branches:
- "main"
jobs:
ci:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "yarn"
node-version: "16"
- name: "Install dependencies"
run: "yarn install --immutable"
- name: "Lint the code"
run: "yarn lint"
- name: "Generate the subgraph manifest"
run: "yarn prepare:mainnet"
- name: "Generate the AssemblyScript types"
run: "yarn codegen"
- name: "Build the subgraph"
run: "yarn build"