File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,30 @@ steps:
25
25
commands :
26
26
- make deps-frontend
27
27
28
+ - name : checks-frontend
29
+ image : node:16
30
+ commands :
31
+ - make checks-frontend
32
+ depends_on : [deps-frontend]
33
+
34
+ - name : lint-frontend
35
+ image : node:16
36
+ commands :
37
+ - make lint-frontend
38
+ depends_on : [deps-frontend]
39
+
40
+ - name : test-frontend
41
+ image : node:16
42
+ commands :
43
+ - make test-frontend
44
+ depends_on : [lint-frontend]
45
+
46
+ - name : build-frontend
47
+ image : node:16
48
+ commands :
49
+ - make frontend
50
+ depends_on : [test-frontend]
51
+
28
52
- name : deps-backend
29
53
image : golang:1.18
30
54
pull : always
@@ -35,12 +59,6 @@ steps:
35
59
path : /go
36
60
depends_on : [build-frontend]
37
61
38
- - name : lint-frontend
39
- image : node:16
40
- commands :
41
- - make lint-frontend
42
- depends_on : [deps-frontend]
43
-
44
62
- name : lint-backend
45
63
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
46
64
pull : always
@@ -83,12 +101,6 @@ steps:
83
101
- name : deps
84
102
path : /go
85
103
86
- - name : checks-frontend
87
- image : node:16
88
- commands :
89
- - make checks-frontend
90
- depends_on : [deps-frontend]
91
-
92
104
- name : checks-backend
93
105
image : golang:1.18
94
106
commands :
@@ -98,18 +110,6 @@ steps:
98
110
- name : deps
99
111
path : /go
100
112
101
- - name : test-frontend
102
- image : node:16
103
- commands :
104
- - make test-frontend
105
- depends_on : [lint-frontend]
106
-
107
- - name : build-frontend
108
- image : node:16
109
- commands :
110
- - make frontend
111
- depends_on : [test-frontend]
112
-
113
113
- name : build-backend-no-gcc
114
114
image : golang:1.18 # this step is kept as the lowest version of golang that we support
115
115
pull : always
You can’t perform that action at this time.
0 commit comments