add frontend step to CI

This commit is contained in:
A.Unger
2020-05-22 08:40:46 +02:00
parent 2f8cf78963
commit d6b50f2215
+11
View File
@@ -32,6 +32,17 @@ def testing(ctx):
'arch': 'amd64',
},
'steps': [
'name': 'frontend',
'image': 'webhippie/nodejs:latest',
'pull': 'always',
'commands': [
'yarn install --frozen-lockfile',
'yarn lint',
'yarn test',
'yarn build',
],
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',