Merge test a11y steps on starlark files

This commit is contained in:
dsotirakis
2021-11-10 14:35:03 +02:00
parent 486fbac23b
commit a3f6982476
4 changed files with 19 additions and 29 deletions

View File

@ -86,7 +86,7 @@ def get_steps(edition, is_downstream=False):
e2e_tests_step(edition=edition),
build_storybook_step(edition=edition, ver_mode=ver_mode),
publish_storybook_step(edition=edition, ver_mode=ver_mode),
test_a11y_frontend_step(edition=edition),
test_a11y_frontend_step(ver_mode=ver_mode, edition=edition),
frontend_metrics_step(edition=edition),
build_frontend_docs_step(edition=edition),
copy_packages_for_docker_step(),

View File

@ -25,7 +25,7 @@ load(
'benchmark_ldap_step',
'validate_scuemata_step',
'ensure_cuetsified_step',
'test_a11y_frontend_step_pr',
'test_a11y_frontend_step',
)
load(
@ -79,7 +79,7 @@ def pr_pipelines(edition):
e2e_tests_server_step(edition=edition),
e2e_tests_step(edition=edition),
build_storybook_step(edition=edition, ver_mode=ver_mode),
test_a11y_frontend_step_pr(edition=edition),
test_a11y_frontend_step(ver_mode=ver_mode, edition=edition),
build_frontend_docs_step(edition=edition),
build_docs_website_step(),
copy_packages_for_docker_step(),