From 9d47612b12b8540a3b1c8297479960bbb32e868c Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 29 May 2020 13:32:35 -0700 Subject: [PATCH] Another node attempt on CircleCI --- .circleci/config.yml | 11 +++-------- run-tests.sh | 2 ++ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2673c3e..fb85c7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,16 +10,11 @@ jobs: - checkout - restore_cache: key: honeysql-{{ checksum "deps.edn" }} - # 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 + command: + - sudo apt-get install -y nodejs + - sudo ln -s /usr/bin/js /usr/bin/node - run: name: Download Dependencies command: clojure -R:test:runner:cljs-runner:eastwood:readme -Spath && clojure -A:1.7 -Spath && clojure -A:1.8 -Spath && clojure -A:1.9 -Spath diff --git a/run-tests.sh b/run-tests.sh index 34ebf67..884c2a0 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -21,4 +21,6 @@ then echo ==== Test Clojure ==== clojure -A:test:runner fi +else + exit 1 fi