mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-10 11:24:39 +03:00
928b562948
expected behavior of npm packages fixes #1053 - updates travis config to be more in line with current dev steps - fix `grunt-cli` warning from appearing when running grunt
23 lines
568 B
YAML
23 lines
568 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
env:
|
|
- DB=sqlite3
|
|
- DB=mysql
|
|
- DB=pg
|
|
matrix:
|
|
allow_failures:
|
|
- env: DB=pg
|
|
before_install:
|
|
- gem install bundler
|
|
- 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
|
|
- grunt init |