Attempt to install node for CircleCI
This commit is contained in:
parent
4b16edb74f
commit
6b9abf0b5d
1 changed files with 13 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue