npm install before running test server

This commit is contained in:
Lukas Schmidt 2015-09-18 18:19:05 +02:00
parent 5b6b36a2dc
commit 9a39524ba2

View File

@ -3,4 +3,8 @@ xcode_project: Socket.IO-Client-Swift.xcodeproj # path to your xcodeproj folder
xcode_scheme: SocketIO-iOS xcode_scheme: SocketIO-iOS
osx_image: xcode7 osx_image: xcode7
script: xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-iOS -sdk iphonesimulator build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO script: xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-iOS -sdk iphonesimulator build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
before_install: node Socket.IO-Test-Server/main.js before_install: cd Socket.IO-Test-Server/ && npm install
install: node Socket.IO-Test-Server/main.js
cache:
directories:
- Socket.IO-Test-Server/node_modules