From 421765832eed0cebeb4f35197d88662e859e1ddd Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Mon, 30 Jan 2023 15:18:50 -0600 Subject: [PATCH] Re-add browser-tools orb to install chrome --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bf2b07..ea83fed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,6 +2,7 @@ version: 2.1 orbs: node: circleci/node@5.1.0 + browser-tools: circleci/browser-tools@1.4.1 executors: java17: @@ -25,6 +26,8 @@ commands: - node/install: node-version: '16.13' - node/install-packages + - browser-tools/install-chrome + - browser-tools/install-chromedriver - run: name: install dockerize command: wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz