mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 09:35:39 -05:00
Enabled Travis CI and edited .gitignore for bin files
This commit is contained in:
parent
502fe4fa6b
commit
ce9550779e
4 changed files with 22 additions and 4 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -71,5 +71,7 @@ FLOOBITS_README.md
|
||||||
|
|
||||||
# mongodb
|
# mongodb
|
||||||
db/
|
db/
|
||||||
|
bin/node/
|
||||||
|
bin/mongo/
|
||||||
|
|
||||||
### If you add something here, copy it to the end of .npmignore, too. ###
|
### If you add something here, copy it to the end of .npmignore, too. ###
|
||||||
|
|
|
@ -86,6 +86,9 @@ dump.rdb
|
||||||
|
|
||||||
# Mongo
|
# Mongo
|
||||||
mongo/
|
mongo/
|
||||||
|
bin/node/
|
||||||
|
bin/mongo/
|
||||||
|
|
||||||
|
|
||||||
# Karma coverage
|
# Karma coverage
|
||||||
coverage/
|
coverage/
|
||||||
|
|
12
.travis.yml
Normal file
12
.travis.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
nguage: node_js
|
||||||
|
node_js:
|
||||||
|
- 0.10
|
||||||
|
before_script:
|
||||||
|
- export DISPLAY=:99.0
|
||||||
|
- sh -e /etc/init.d/xvfb start
|
||||||
|
- "./node_modules/.bin/bower install"
|
||||||
|
- "gem install sass"
|
||||||
|
- "./node_modules/.bin/brunch b"
|
||||||
|
|
||||||
|
script:
|
||||||
|
- "./node_modules/.bin/karma start --browsers Firefox --single-run"
|
|
@ -75,8 +75,9 @@ module.exports = function(config) {
|
||||||
'karma-chrome-launcher',
|
'karma-chrome-launcher',
|
||||||
'karma-phantomjs-launcher',
|
'karma-phantomjs-launcher',
|
||||||
'karma-coffee-preprocessor',
|
'karma-coffee-preprocessor',
|
||||||
'karma-coverage'
|
'karma-coverage',
|
||||||
|
'karma-firefox-launcher'
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue