We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92499fd commit 9190971Copy full SHA for 9190971
.circleci/config.yml
@@ -49,6 +49,18 @@ jobs:
49
# fallback to using the latest cache if no exact match is found
50
- v1-dependencies-
51
- 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
59
+ name: install karma
60
61
+ sudo npm install -g karma-cli
62
+ sudo npm install
63
+
64
- run: lein deps
65
66
- save_cache:
@@ -57,7 +69,10 @@ jobs:
69
key: v1-dependencies-{{ checksum "project.clj" }}
70
71
# run tests!
- - run: lein test
72
+ - run: bb test:clj
73
+ - run: bb test:cljs
74
75
76
deploy:
77
docker:
78
# specify the version you desire here
0 commit comments