From 1bba1b6da3235a41518d8360f44b3123f983d23e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Mon, 14 Dec 2020 16:08:51 +0100 Subject: [PATCH] Actually run BABEL_8_BREAKING tests (#12492) --- .circleci/config.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f989a31b3a..0f6dc2fe18 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -242,12 +242,31 @@ workflows: - publish-verdaccio e2e-breaking: + jobs: + - publish-verdaccio-babel-8-breaking: + filters: + branches: + only: [main, next-8-dev, next-8-rebased] + - e2e-babel: + requires: + - publish-verdaccio-babel-8-breaking + - e2e-create-react-app: + requires: + - publish-verdaccio-babel-8-breaking + - e2e-vue-cli: + requires: + - publish-verdaccio-babel-8-breaking + - e2e-jest: + requires: + - publish-verdaccio-babel-8-breaking + + e2e-breaking-pr: jobs: - approve-e2e-breaking-run: type: approval filters: branches: - ignore: [main] + ignore: [main, next-8-dev, next-8-rebased] - publish-verdaccio-babel-8-breaking: requires: - approve-e2e-breaking-run @@ -263,3 +282,4 @@ workflows: - e2e-jest: requires: - publish-verdaccio-babel-8-breaking +