mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 21:41:49 +03:00
fd583df8e5
fixes #1053 - fleshed out script object - added test and install package.json - updated contributing guide - updates travis.yml to leverage new npm start
25 lines
601 B
YAML
25 lines
601 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
env:
|
|
- DB=sqlite3
|
|
- DB=mysql
|
|
- DB=pg
|
|
matrix:
|
|
allow_failures:
|
|
- env: DB=pg
|
|
before_install:
|
|
- rvm use 1.9.3
|
|
- gem install bundler
|
|
- npm install -g grunt-cli
|
|
- 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_travis'; fi
|
|
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_travis;' -U postgres; fi
|
|
before_script:
|
|
- phantomjs --version
|
|
- casperjs --version
|