Skip to content

Commit cb63133

Browse files
author
Filip Mertens
committed
fix
1 parent 1461cb6 commit cb63133

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.circleci/config.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,21 @@ jobs:
9797
condition:
9898
equal: [ "chrome", << parameters.browser >> ]
9999
steps:
100-
- browser-tools/install-chrome
101-
- browser-tools/install-chromedriver
102-
- google-chrome --version
103-
- chromedriver --version
104-
- rm LICENSE.chromedriver 2> /dev/null
100+
- browser-tools/install-browser-tools:
101+
install-firefox: false
102+
install-chrome: true
103+
- run: google-chrome --version
104+
- run: chromedriver --version
105+
- run: rm LICENSE.chromedriver 2> /dev/null
105106
- when:
106107
condition:
107108
equal: [ "firefox", << parameters.browser >> ]
108109
steps:
109-
- browser-tools/install-firefox
110-
- browser-tools/install-geckodriver
111-
- firefox --version
112-
- geckodriver --version
110+
- browser-tools/install-browser-tools:
111+
install-firefox: true
112+
install-chrome: false
113+
- run: firefox --version
114+
- run: geckodriver --version
113115
- checkout
114116
- attach_workspace:
115117
at: .

0 commit comments

Comments
 (0)