Update node versions
This commit is contained in:
parent
d32e19c4ac
commit
cbb7365f58
3 changed files with 12 additions and 0 deletions
1
.nvmrc
Normal file
1
.nvmrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
5.10.1
|
9
build
9
build
|
@ -1,5 +1,14 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if [ -z "$NVM_DIR" ]
|
||||||
|
then
|
||||||
|
NVM_DIR="$HOME/.nvm"
|
||||||
|
fi
|
||||||
|
|
||||||
|
. $NVM_DIR/nvm.sh
|
||||||
|
nvm install
|
||||||
|
nvm use
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
pyvenv-3.4 env
|
pyvenv-3.4 env
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
machine:
|
machine:
|
||||||
python:
|
python:
|
||||||
version: 3.4.2
|
version: 3.4.2
|
||||||
|
node:
|
||||||
|
version: 5.10.1
|
||||||
environment:
|
environment:
|
||||||
DEBUG: true
|
DEBUG: true
|
||||||
DATABASE_URL: sqlite://~/database.db
|
DATABASE_URL: sqlite://~/database.db
|
||||||
|
|
Reference in a new issue