Skip to content

Commit

Permalink
GHI-#8 Update Travis CI- and Circle CI build configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed May 2, 2017
1 parent c9ac86a commit a064a70
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@
# Travis CI Documentation
# (https://docs.travis-ci.com)
language: node_js
dist: trusty
sudo: false
node_js:
- "4"
- "6"
cache:
directories:
- $HOME/node_modules
- "7"
before_install:
- rm -rf ./node_modules
before_script:
- npm install -g gulp
- npm install -g gulp-cli
- npm install gulp
- npm install
script: gulp lint
script:
- gulp --harmony lint
14 changes: 10 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@
#
# [References]
# Circle CI
# (https://circleci.com/docs)
# https://circleci.com/docs
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
machine:
node:
version: 6.1.0
version: 7
dependencies:
pre:
- rm -rf ./node_modules
override:
- npm install -g gulp
- npm install -g gulp-cli
- npm install gulp
- npm install
test:
override:
- gulp lint
- gulp --harmony lint

0 comments on commit a064a70

Please sign in to comment.