-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
35 lines (32 loc) · 880 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
sudo: false
language: node_js
node_js:
- stable
- '0.12'
addons:
apt:
packages:
- php5
- php5-curl
- php5-cli
- php5-intl
before_install:
- gem update --system
- gem install sass
- php --version
- php -r "readfile('https://getcomposer.org/installer');" | php && php composer.phar config -g github-oauth.github.com $GH_AUTH
- npm update -g npm
- npm install -g bower grunt-cli jspm
- jspm config registries.github.auth $JSPM_AUTH
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-grunt-symfony' ]; then cd .. && eval "mv $currentfolder generator-grunt-symfony" && cd generator-grunt-symfony; fi
- npm install
matrix:
fast_finish: true
cache:
directories:
- node_modules
- test/fixtures/bower_components
- test/fixtures/jspm_packages
- test/fixtures/node_modules
- test/fixtures/vendor