Skip to content

Commit 320166b

Browse files
committed
Update npm steps in .travis.yml (close snowplow#690)
1 parent 7cf2728 commit 320166b

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

.travis.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
node_js:
2-
- 4.1.2
2+
- 8.12.0
33
language: node_js
44
install:
5-
- npm install -g npm@3.10.8
5+
- npm install -g npm@6.4.1
66
- npm install -g grunt-cli
77

8+
# install packages and build core
89
- cd core
9-
- npm install --only=dev --quiet
10+
- rm -rf node_modules
11+
- npm install
1012
- grunt ts
1113
- grunt dtsGenerator
14+
15+
# install packages for tracker
1216
- cd ..
17+
- rm -rf node_modules
18+
- npm install
1319

14-
- npm install --no-optional
15-
- npm install ./core --save # Must be cleaned from package.json before deploy
16-
- npm dedupe
17-
- npm shrinkwrap --also=dev
20+
# get ngrok
1821
- wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
1922
- unzip ./ngrok-stable-linux-amd64.zip
2023
before_script:

0 commit comments

Comments
 (0)