私はNode.JSでWebサーバーを作っていて、Travis-Ciを使ってコードをチェックしています。Travisはエラーを出しますが、パソコンでコンパイルします
install:
- npm install
- npm install -g bower
- bower install bootstrap
- bower install socket.io
language: node_js
node_js:
- "6.9"
before_script:
- chmod 0777 ./backend/server.js
cache:
directories:
- node_modules
- bower_components
と:
ここ
./backend/server.js
: 1: Syntax error:(
unexpected
あなたは私の.travis.yml
ファイルを見つけることができる:私が得たYheの問題は、私は自分のコードをコミットすると、トラビスは、以下のエラーになりますが、コードは私のPC上でエラーなしでコンパイルされthis gistでpackage.json
{
"name": "watchfriends",
"version": "0.0.0",
"description": "Front-end and back-end project watchfriends",
"main": "gulpfile.js",
"scripts": {
"test": "./backend/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WatchFriends/Backend.git"
},
"author": "Hein P., Jasper D., Michiel V., Michiel Z.",
"license": "ISC",
"bugs": {
"url": "https://github.com/WatchFriends/Backend/issues"
},
"homepage": "https://github.com/WatchFriends/Backend#readme",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.1",
"gulp-csslint": "^1.0.0",
"gulp-htmlhint": "^0.3.1",
"gulp-jshint": "^2.0.4",
"gulp-notify": "^2.2.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^2.0.0",
"jshint-stylish": "^2.2.1"
},
"dependencies": {
"socket.io": "^1.5.1"
}
}
は、あなたはログを含め、私のコードを見つけることができます。
私は何か間違っていましたか?
ありがとうございます。
スクリプトの最初に '#!/ usr/bin/env node'が見つからないようです。スクリプトはシェルスクリプトとして実行されるようですか? –