From d74a2ac2df873edebfb75f563ae589441b53d32b Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Thu, 18 Jun 2020 12:44:01 +0200 Subject: [PATCH] ci: use same executor for integration tests as for e2e --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 57bce2440cbb8..12da482394fea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -239,32 +239,32 @@ jobs: working_directory: ~/project/www integration_tests_long_term_caching: - executor: node + <<: *e2e-executor steps: - e2e-test: test_path: integration-tests/long-term-caching integration_tests_cache_resilience: - executor: node + <<: *e2e-executor steps: - e2e-test: test_path: integration-tests/cache-resilience integration_tests_gatsby_pipeline: - executor: node + <<: *e2e-executor steps: - e2e-test: test_path: integration-tests/gatsby-pipeline integration_tests_gatsby_cli: - executor: node + <<: *e2e-executor steps: - e2e-test: test_path: integration-tests/gatsby-pipeline trigger_pattern: packages/gatsby-cli/*|packages/gatsby/*|integration-tests/gatsby-cli/* integration_tests_structured_logging: - executor: node + <<: *e2e-executor steps: - e2e-test: test_path: integration-tests/structured-logging