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

Add configuration for duplicate-packages integ tests #8217

Merged
merged 3 commits into from
May 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,23 @@ jobs:
spec: << parameters.scenario >>
browser: firefox

integ_duplicate_packages:
parameters:
browser:
type: string
executor: js-test-executor
<<: *test_env_vars
working_directory: ~/amplify-js-samples-staging/samples/react/version-conflict/duplicate-packages
steps:
- prepare_test_env
- integ_test_js:
test_name: 'Duplicate Package Errors'
framework: react
category: version-conflict
sample_name: duplicate-packages
spec: duplicate-packages
browser: << parameters.browser >>

deploy:
executor: macos-executor
working_directory: ~/amplify-js
Expand Down Expand Up @@ -771,6 +788,7 @@ releasable_branches: &releasable_branches
- ui-components/main
- 1.0-stable
- native
- version-upgrade-circle
slaymance marked this conversation as resolved.
Show resolved Hide resolved

test_browsers: &test_browsers
browser: [chrome, firefox]
Expand Down Expand Up @@ -971,6 +989,15 @@ workflows:
matrix:
parameters:
<<: *datastore_auth_scenarios
- integ_duplicate_packages:
requires:
- integ_setup
- build
filters:
<<: *releasable_branches
matrix:
parameters:
<<: *test_browsers
- deploy:
filters:
<<: *releasable_branches
Expand All @@ -995,6 +1022,7 @@ workflows:
- integ_rn_android_storage
- integ_rn_android_storage_multipart_progress
- integ_datastore_auth
- integ_duplicate_packages
- post_release:
filters:
branches:
Expand Down