1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|
|