File tree Expand file tree Collapse file tree 3 files changed +35
-1
lines changed
gre/test/fixture-projects/default-config Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Run GRE tests
2
+
3
+ on :
4
+ push :
5
+ branches : [dev]
6
+ pull_request : {}
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+
12
+ strategy :
13
+ matrix :
14
+ node-version : [16.x]
15
+
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - name : Use Node.js ${{ matrix.node-version }}
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : ${{ matrix.node-version }}
22
+ - name : Install packages
23
+ run : yarn install --non-interactive --frozen-lockfile
24
+ - name : Build project
25
+ run : yarn build
26
+ - name : Run GRE tests
27
+ run : yarn test:gre
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ networks : {
3
+ mainnet : {
4
+ chainId : 1 ,
5
+ url : `https://mainnet.infura.io/v3/123456` ,
6
+ } ,
7
+ } ,
8
+ }
You can’t perform that action at this time.
0 commit comments