File tree Expand file tree Collapse file tree 1 file changed +0
-51
lines changed Expand file tree Collapse file tree 1 file changed +0
-51
lines changed Original file line number Diff line number Diff line change 70
70
restore-keys : |
71
71
${{ runner.os }}-go-
72
72
- run : GOPROXY=direct GOSUMDB=off GO111MODULE=on go build -tags draft ./cmd/main.go
73
- build-ui :
74
- name : UI build
75
- runs-on : ubuntu-latest
76
- steps :
77
- - name : Check out code
78
- uses : actions/checkout@master
79
- with :
80
- fetch-depth : 1
81
- - uses : actions/setup-node@v1
82
- with :
83
- node-version : ${{ secrets.NODE_VERSION }}
84
- - uses : actions/cache@v1
85
- with :
86
- path : ~/.npm
87
- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
88
- restore-keys : |
89
- ${{ runner.os }}-node-
90
- - run : |
91
- cd ui
92
- npm i
93
- npm run build && npm run export
94
- cd ..
95
- cd provider-ui
96
- npm i
97
- npm run build && npm run export
98
- tests-ui :
99
- name : UI tests
100
- runs-on : ubuntu-latest
101
- steps :
102
- - name : Check out code
103
- uses : actions/checkout@master
104
- with :
105
- fetch-depth : 1
106
- - uses : actions/setup-node@v1
107
- with :
108
- node-version : ${{ secrets.NODE_VERSION }}
109
- - uses : actions/cache@v1
110
- with :
111
- path : ~/.npm
112
- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
113
- restore-keys : |
114
- ${{ runner.os }}-node-
115
- - run : |
116
- cd ui
117
- npm i
118
- npm test
119
- cd ..
120
- cd provider-ui
121
- npm i
122
- npm test
123
- cd ..
124
73
mesheryctl_build :
125
74
name : Mesheryctl build & release
126
75
runs-on : macos-latest
You can’t perform that action at this time.
0 commit comments