-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (43 loc) · 1.61 KB
/
master.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
name: Build
on:
push:
branches:
- master
jobs:
build_test_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
cache: npm
node-version: 18
registry-url: 'https://npm.pkg.github.com'
scope: '@oriumnetwork'
- name: Install Dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GHB_TOKEN }}
- name: Lint
run: npm run lint
- name: Subgraph Auth
run: yarn graph:auth -- ${{ secrets.THEGRAPH_API_KEY }}
- name: Build Goerli
run: npm run build:goerli
- name: Deploy Goerli Hosted Service
run: npm run deploy:goerli
- name: Build Mumbai
run: npm run build:mumbai
- name: Deploy Mumbai Hosted Service
run: npm run deploy:mumbai
- name: Build Polygon
run: npm run build:polygon
- name: Test
run: npm run test
- name: Subgraph Deploy Polygon Satsuma
run: npx graph deploy polygon-roles-registry --version-label ${{ github.sha }} --node https://subgraphs.alchemy.com/api/subgraphs/deploy --ipfs https://ipfs.satsuma.xyz --deploy-key ${{ secrets.SATSUMA_DEPLOY_KEY }}
- name: Subgraph Promote Polygon Satsuma
run: |
curl -X POST https://subgraphs.alchemy.com/api/subgraphs/8c268d3e8b83112a7d0c732a9b88ba1c732da600bffaf68790171b9a0b5d5394/polygon-roles-registry/${{ github.sha }}/auto-promote-live -H "Content-Type: application/json" -H "x-api-key: ${{ secrets.SATSUMA_DEPLOY_KEY }}"