From 6b9abf0b5dd0c484363e2532d6d8c295c07fd38f Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 29 May 2020 12:52:57 -0700 Subject: [PATCH] Attempt to install node for CircleCI --- .circleci/config.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 02ac19c..1b74564 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,19 @@ jobs: - checkout - restore_cache: key: honeysql-{{ checksum "deps.edn" }} - - run: clojure -R:test:runner -Spath + # Install Node for JH Build + - run: + name: Download Node + command: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash + - run: + name: Install Node + command: sudo apt-get install -y nodejs + - run: + name: update-npm + command: sudo npm install -g npm@latest + - run: + name: Run Tests + command: clojure -R:test:runner -Spath - save_cache: paths: - ~/.m2