docs: refresh descriptions in light of v2 #6
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: | |
- "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" |