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
|
||||
|
||||
if [ -z "$NVM_DIR" ]
|
||||
then
|
||||
NVM_DIR="$HOME/.nvm"
|
||||
fi
|
||||
|
||||
. $NVM_DIR/nvm.sh
|
||||
nvm install
|
||||
nvm use
|
||||
|
||||
set -e
|
||||
|
||||
pyvenv-3.4 env
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
machine:
|
||||
python:
|
||||
version: 3.4.2
|
||||
node:
|
||||
version: 5.10.1
|
||||
environment:
|
||||
DEBUG: true
|
||||
DATABASE_URL: sqlite://~/database.db
|
||||
|
|
Reference in a new issue