File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+ workflow_dispatch :
11
+
12
+ jobs :
13
+ e2e-tests :
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - name : Checkout Repository 📝
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Setup Node.js
21
+ uses : actions/setup-node@v4
22
+ with :
23
+ node-version : " 20.x"
24
+ cache : " yarn"
25
+
26
+ - name : Install Dependencies
27
+ run : yarn install --frozen-lockfile
28
+
29
+ - name : Build contracts
30
+ run : yarn build
Original file line number Diff line number Diff line change 30
30
- name : Install Dependencies
31
31
run : yarn install --frozen-lockfile
32
32
33
+ - name : Build contracts
34
+ run : yarn build
35
+
33
36
- name : Set Up Starship Infrastructure
34
37
id : starship-infra
35
38
uses :
cosmology-tech/[email protected]
You can’t perform that action at this time.
0 commit comments