add frontend step to docker

This commit is contained in:
A.Unger
2020-05-22 10:36:52 +02:00
parent 9f27fe2981
commit aaa49e329f

View File

@@ -163,6 +163,17 @@ def docker(ctx, arch):
'arch': arch,
},
'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',