Run test-prod job for experimental builds (#18152)

This commit is contained in:
Dan Abramov 2020-02-27 16:21:36 +00:00 committed by GitHub
parent 1ad2179002
commit abcca45951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -141,6 +141,18 @@ jobs:
RELEASE_CHANNEL: stable
command: yarn test-prod --maxWorkers=2
test_source_prod_experimental:
docker: *docker
environment: *environment
steps:
- checkout
- *restore_yarn_cache
- *run_yarn
- run:
environment:
RELEASE_CHANNEL: experimental
command: yarn test-prod --maxWorkers=2
build:
docker: *docker
environment: *environment
@ -400,6 +412,9 @@ workflows:
- test_source_experimental:
requires:
- setup
- test_source_prod_experimental:
requires:
- setup
- build_experimental:
requires:
- setup