From 919097197c6e9794815c47ddbdc8f49ac88991fe Mon Sep 17 00:00:00 2001 From: Erik Assum Date: Sun, 20 Nov 2022 13:59:11 +0100 Subject: [PATCH] Use bb to run tests (#72) --- .circleci/config.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 98d9d55..3d8d7f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -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