From 7fd9569cca02448b2bad01599a8349083c95c338 Mon Sep 17 00:00:00 2001 From: Demetrio Girardi Date: Tue, 15 Feb 2022 11:36:31 -0700 Subject: [PATCH] CircleCI config: use "browsers" image (#8051) Change the CircleCI image to one that has Chrome to fix failing nightly e2e tests --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 404026d9446..784b520ecc1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,11 @@ # Check https://circleci.com/docs/2.0/language-javascript/ for more details # -aliases: +aliases: - &environment docker: # specify the version you desire here - - image: circleci/node:12.16.1 + - image: circleci/node:12.16.1-browsers resource_class: xlarge # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images @@ -72,7 +72,7 @@ jobs: build: <<: *environment steps: *unit_test_steps - + e2etest: <<: *environment steps: *endtoend_test_steps