File tree 9 files changed +32
-8
lines changed
packages/token-distribution
9 files changed +32
-8
lines changed Original file line number Diff line number Diff line change 15
15
- name : Install dependencies
16
16
shell : bash
17
17
run : yarn --immutable
18
- - name : Build
19
- shell : bash
20
- run : yarn build || yarn build
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: Build
2
2
3
3
env :
4
4
CI : true
5
+ STUDIO_API_KEY : ${{ secrets.STUDIO_API_KEY }}
5
6
6
7
on :
7
8
push :
17
18
- name : Checkout
18
19
uses : actions/checkout@v4
19
20
- name : Set up environment
20
- uses : ./.github/actions/setup
21
+ uses : ./.github/actions/setup
22
+ - name : Build
23
+ run : yarn build || yarn build
Original file line number Diff line number Diff line change 22
22
uses : actions/checkout@v4
23
23
- name : Set up environment
24
24
uses : ./.github/actions/setup
25
+ - name : Build
26
+ run : |
27
+ pushd packages/contracts
28
+ yarn build || yarn build
25
29
- name : Run tests
26
30
run : |
27
31
pushd packages/contracts
Original file line number Diff line number Diff line change 22
22
uses : actions/checkout@v4
23
23
- name : Set up environment
24
24
uses : ./.github/actions/setup
25
+ - name : Build
26
+ run : |
27
+ pushd packages/data-edge
28
+ yarn build
25
29
- name : Run tests
26
30
run : yarn test
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: CI - packages/token-distribution
2
2
3
3
env :
4
4
CI : true
5
+ STUDIO_API_KEY : ${{ secrets.STUDIO_API_KEY }}
5
6
6
7
on :
7
8
push :
22
23
uses : actions/checkout@v4
23
24
- name : Set up environment
24
25
uses : ./.github/actions/setup
26
+ - name : Build
27
+ run : |
28
+ pushd packages/token-distribution
29
+ yarn build
25
30
- name : Run tests
26
31
run : yarn test
Original file line number Diff line number Diff line change 32
32
uses : actions/checkout@v4
33
33
- name : Set up environment
34
34
uses : ./.github/actions/setup
35
+ - name : Build
36
+ run : |
37
+ pushd packages/contracts
38
+ yarn build || yarn build
35
39
- name : Run e2e tests
36
40
run : |
37
41
git clone https://github.com/OffchainLabs/nitro-testnode/
Original file line number Diff line number Diff line change 28
28
- name : Set up environment
29
29
uses : ./.github/actions/setup
30
30
31
- - name : Compile contracts
32
- run : yarn build
31
+ - name : Build
32
+ run : |
33
+ pushd packages/contracts
34
+ yarn build || yarn build
33
35
34
36
- name : Save build artifacts
35
37
uses : actions/upload-artifact@v3
48
50
uses : actions/checkout@v3
49
51
- name : Set up environment
50
52
uses : ./.github/actions/setup
53
+ - name : Build
54
+ run : |
55
+ pushd packages/contracts
56
+ yarn build || yarn build
51
57
- name : Get build artifacts
52
58
uses : actions/download-artifact@v3
53
59
with :
Original file line number Diff line number Diff line change 1
1
MNEMONIC =
2
2
ETHERSCAN_API_KEY =
3
3
INFURA_KEY =
4
+ STUDIO_API_KEY =
Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ sources:
2
2
- name : graph-network
3
3
handler :
4
4
graphql :
5
- endpoint : https://api .thegraph.com/subgraphs/name/graphprotocol/graph-network-mainnet
5
+ endpoint : https://gateway .thegraph.com/api/${STUDIO_API_KEY}/subgraphs/id/9Co7EQe5PgW3ugCUJrJgRv4u9zdEuDJf8NvMWftNsBH8
6
6
retry : 5
7
7
8
8
- name : token-distribution
9
9
handler :
10
10
graphql :
11
- endpoint : https://api .thegraph.com/subgraphs/name/graphprotocol/token-distribution
11
+ endpoint : https://gateway .thegraph.com/api/${STUDIO_API_KEY}/subgraphs/id/ChfAJn6jQEBjVqtdUiThfG6sWy2Sr5XQPNucE9DkgXSN
12
12
retry : 5
13
13
transforms :
14
14
- autoPagination :
You can’t perform that action at this time.
0 commit comments