Chore: split betterer into it's own CI step and allow failures for now (#51543)

* split betterer into it's own CI step and allow failures for now

* Run make drone

Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com>
This commit is contained in:
Ashley Harrison
2022-06-29 15:04:52 +01:00
committed by GitHub
co-authored by dsotirakis
parent 76aa4f770e
commit f654152dc8
5 changed files with 34 additions and 3 deletions
+13
View File
@@ -539,6 +539,19 @@ def test_backend_integration_step(edition):
],
}
def betterer_frontend_step():
return {
'name': 'betterer-frontend',
'image': build_image,
'depends_on': [
'yarn-install',
],
'commands': [
'yarn betterer ci',
],
'failure': 'ignore',
}
def test_frontend_step():