bf1ff2ac0d
fixes #3171, fixes #2382, refs #3130 - Moved grunt init from travis into grunt validate, this makes sure we get verbose output from grunt init. - Added `grunt test` task to run just the tests without building if you want - Upgraded grunt-contrib-concat and added nonull property (had to switch to src/dist for this to work) #2382 - Upgraded bower to 1.3.5, which appears to resolve #3171 - Changed bower git assets to all be referenced the same and removed resolutions again #3130
21 lines
611 B
YAML
21 lines
611 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
env:
|
|
- DB=sqlite3 NODE_ENV=testing
|
|
- DB=mysql NODE_ENV=testing-mysql
|
|
- DB=pg NODE_ENV=testing-pg
|
|
matrix:
|
|
allow_failures:
|
|
- env: DB=pg NODE_ENV=testing-pg
|
|
before_install:
|
|
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
|
|
- cd ~/casperjs
|
|
- git checkout tags/1.1-beta3
|
|
- export PATH=$PATH:`pwd`/bin
|
|
- cd -
|
|
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi
|
|
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_testing;' -U postgres; fi
|
|
before_script:
|
|
- phantomjs --version
|
|
- casperjs --version |