Skip to content

Commit

Permalink
feat(ci)
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Apr 5, 2015
1 parent f597b0e commit a2cf4cd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions scripts/ci/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env zsh

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.21.0/install.sh | bash
source ~/.nvm/nvm.sh

nvm install
nvm use

npm install

node -v
npm -v

npm install

set -e

# Any subsequent commands which fail will cause the shell script to exit immediately
setopt extended_glob;

npm test

npm install check-build -g
check-build

0 comments on commit a2cf4cd

Please sign in to comment.