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
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -71,5 +71,7 @@ FLOOBITS_README.md
|
|||
|
||||
# mongodb
|
||||
db/
|
||||
bin/node/
|
||||
bin/mongo/
|
||||
|
||||
### If you add something here, copy it to the end of .npmignore, too. ###
|
|
@ -86,6 +86,9 @@ dump.rdb
|
|||
|
||||
# Mongo
|
||||
mongo/
|
||||
bin/node/
|
||||
bin/mongo/
|
||||
|
||||
|
||||
# Karma 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,7 +75,8 @@ module.exports = function(config) {
|
|||
'karma-chrome-launcher',
|
||||
'karma-phantomjs-launcher',
|
||||
'karma-coffee-preprocessor',
|
||||
'karma-coverage'
|
||||
'karma-coverage',
|
||||
'karma-firefox-launcher'
|
||||
]
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue