Skip to content

Commit fc627d4

Browse files
committed
Adds travis
1 parent 97a1562 commit fc627d4

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
dist
44
bower_components
55
node_modules
6+
npm-debug.log

Diff for: .travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
sudo: false
2+
language: php
3+
php:
4+
- '5.5'
5+
- '5.4'
6+
before_install:
7+
- npm install -g bower
8+
- npm install
9+
script:
10+
- npm run build
11+
- npm run jshint

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# [Roots Starter Theme](http://roots.io/)
2+
[![Build Status](https://travis-ci.org/roots/roots.svg)](https://travis-ci.org/roots/roots)
23
[![devDependency Status](https://david-dm.org/roots/roots/dev-status.svg)](https://david-dm.org/roots/roots#info=devDependencies)
34

45
Roots is a WordPress starter theme based on [HTML5 Boilerplate](http://html5boilerplate.com/) & [Bootstrap](http://getbootstrap.com/) that will help you make better themes.

Diff for: package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
"url": "http://opensource.org/licenses/MIT"
1717
}
1818
],
19-
"scripts": {},
19+
"scripts": {
20+
"build": "bower install && gulp",
21+
"jshint": "gulp jshint"
22+
},
2023
"engines": {
2124
"node": ">= 0.10.0"
2225
},

0 commit comments

Comments
 (0)