Skip to content

Commit 97f7b4e

Browse files
nvandoornforkata
authored andcommitted
Add browser tool install step to Circle template
This step is required when using the newer Ruby docker image (`cimg`). Co-authored-by: Chris Todorov <chris@super.gd>
1 parent a9adf03 commit 97f7b4e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • lib/solidus_dev_support/templates/extension/.circleci

lib/solidus_dev_support/templates/extension/.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
version: 2.1
22

33
orbs:
4+
# Required for feature specs.
5+
browser-tools: circleci/browser-tools@1.1
6+
47
# Always take the latest version of the orb, this allows us to
58
# run specs against Solidus supported versions only without the need
69
# to change this configuration every time a Solidus version is released
@@ -11,14 +14,17 @@ jobs:
1114
run-specs-with-postgres:
1215
executor: solidusio_extensions/postgres
1316
steps:
17+
- browser-tools/install-browser-tools
1418
- solidusio_extensions/run-tests
1519
run-specs-with-mysql:
1620
executor: solidusio_extensions/mysql
1721
steps:
22+
- browser-tools/install-browser-tools
1823
- solidusio_extensions/run-tests
1924
lint-code:
2025
executor: solidusio_extensions/sqlite-memory
2126
steps:
27+
- browser-tools/install-browser-tools
2228
- solidusio_extensions/lint-code
2329

2430
workflows:

0 commit comments

Comments
 (0)