Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run e2e tests also with BABEL_8_BREAKING #12462

Merged
merged 3 commits into from Dec 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 36 additions & 0 deletions .circleci/config.yml
Expand Up @@ -128,6 +128,19 @@ jobs:
- htpasswd
- save_cache: *save-yarn-cache

publish-verdaccio-babel-8-breaking:
executor: node-executor
steps:
- checkout
- restore_cache: *restore-yarn-cache
- run: BABEL_8_BREAKING=true ./scripts/integration-tests/publish-local.sh
- persist_to_workspace:
root: /tmp/verdaccio-workspace
paths:
- storage
- htpasswd
- save_cache: *save-yarn-cache

e2e-babel:
executor: node-executor
steps:
Expand Down Expand Up @@ -227,3 +240,26 @@ workflows:
- e2e-jest:
requires:
- publish-verdaccio

e2e-breaking:
jobs:
- approve-e2e-breaking-run:
type: approval
filters:
branches:
ignore: [main]
- publish-verdaccio-babel-8-breaking:
requires:
- approve-e2e-breaking-run
- 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