Skip to content

Commit 9190971

Browse files
authored
Use bb to run tests (#72)
1 parent 92499fd commit 9190971

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.circleci/config.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,18 @@ jobs:
4949
# fallback to using the latest cache if no exact match is found
5050
- v1-dependencies-
5151
- run: sudo apt-get update && sudo apt-get install -y phantomjs
52+
- run:
53+
name: Install babashka
54+
command: |
55+
curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install -o install.sh
56+
sudo bash install.sh
57+
rm install.sh
58+
- run:
59+
name: install karma
60+
command: |
61+
sudo npm install -g karma-cli
62+
sudo npm install
63+
5264
- run: lein deps
5365

5466
- save_cache:
@@ -57,7 +69,10 @@ jobs:
5769
key: v1-dependencies-{{ checksum "project.clj" }}
5870

5971
# run tests!
60-
- run: lein test
72+
- run: bb test:clj
73+
- run: bb test:cljs
74+
75+
6176
deploy:
6277
docker:
6378
# specify the version you desire here

0 commit comments

Comments
 (0)