-
Notifications
You must be signed in to change notification settings - Fork 434
49 lines (47 loc) · 1.12 KB
/
subgraph-test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Subgraph CI
on:
push:
branches:
- master
pull_request:
paths:
- 'packages/nouns-contracts/abi/contracts/**'
- 'packages/nouns-subgraph/**'
- '.github/workflows/subgraph-test.yaml'
branches:
- '**'
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install Yarn
run: npm install -g yarn
- run: yarn
- run: yarn build
- name: Prepare subgraph yaml
run: |
cd packages/nouns-subgraph
yarn prepare:sepolia
- name: Generate code
run: |
cd packages/nouns-subgraph
yarn codegen
- name: Generate config
run: |
cd packages/nouns-subgraph
yarn test:configgen
- name: Run tests
run: |
cd packages/nouns-subgraph
yarn test
- name: Uninstall Yarn
if: always()
run: npm uninstall -g yarn