mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-11 00:37:55 +03:00
cfe272e175
closes #1373 - Note that the tests fail if you run them pre #1363, thus future proofing us from this happening again. - Added submodule handling to travis - Added a new test for each of the home and post pages
22 lines
505 B
YAML
22 lines
505 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
env:
|
|
- DB=sqlite3
|
|
- DB=mysql
|
|
before_install:
|
|
- git submodule update --init
|
|
- gem update --system
|
|
- gem install sass bourbon
|
|
- npm install -g grunt-cli
|
|
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
|
|
- cd ~/casperjs
|
|
- git checkout tags/1.1-beta1
|
|
- export PATH=$PATH:`pwd`/bin
|
|
- cd -
|
|
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_travis'; fi
|
|
before_script:
|
|
- phantomjs --version
|
|
- casperjs --version
|
|
- grunt init
|