Skip to content

Commit

Permalink
Use bb to run tests (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
slipset committed Nov 20, 2022
1 parent 92499fd commit 9190971
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: sudo apt-get update && sudo apt-get install -y phantomjs
- run:
name: Install babashka
command: |
curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install -o install.sh
sudo bash install.sh
rm install.sh
- run:
name: install karma
command: |
sudo npm install -g karma-cli
sudo npm install
- run: lein deps

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

# run tests!
- run: lein test
- run: bb test:clj
- run: bb test:cljs


deploy:
docker:
# specify the version you desire here
Expand Down

0 comments on commit 9190971

Please sign in to comment.