Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
sudo: false
language: node_js
node_js:
- "5.1"
language: ruby
rvm:
- "2.2.3"
branches:
only:
- /.*/
before_install:
- npm install
cache:
bundler: true
directories:
- node_modules
script:
- bundle exec jekyll build
- npm test
3 changes: 3 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ gulp.task('test', function () {

gulp.task('js', ['build-js', 'js-lint', 'test']);


// primary tasks

gulp.task('watch', function() {
gulp.watch('bootstrap-toc.css', ['build-css']);
gulp.watch('bootstrap-toc.js', ['js']);
Expand Down