feat: new GH action for the subgraph (#120)
* feat: add subgraph unit tests to github action. * feat: add yarn codegen to the github action. * feat: create a subgraph action, remove unit testing subgraphs from test action. * fix: add the location of the contracts. * chore: remove empty tabs from GH workflow files. * chore: add path to the subgraph github action and also add build command. * fix: include a yarn compile step in the subgraph github action.
This commit is contained in:
parent
7f1aca15dd
commit
2adb39641b
|
|
@ -0,0 +1,45 @@
|
||||||
|
name: Subgraph
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- develop
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- 'subgraph/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
test-subgraph:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: subgraph
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [18.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
|
- name: Compile contracts to get access to the ABI
|
||||||
|
run: cd ../contracts && yarn && yarn compile && cd ../subgraph
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: yarn --ignore-scripts
|
||||||
|
|
||||||
|
- name: Run codegen
|
||||||
|
run: yarn codegen
|
||||||
|
|
||||||
|
- name: Build Subgraph
|
||||||
|
run: yarn build
|
||||||
|
|
||||||
|
- name: Test Subgraph
|
||||||
|
run: yarn test
|
||||||
Loading…
Reference in New Issue