Skip to content

Commit

Permalink
GHI-#10 Update CI build configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Feb 21, 2017
1 parent 21abc3d commit 4e1f2bf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
17 changes: 9 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@
# repository https://github.com/arcticicestudio/nord-terminix +
# author Arctic Ice Studio +
# email [email protected] +
# copyright Copyright (C) 2016 +
# copyright Copyright (C) 2017 +
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# [References]
# Travis CI Documentation
# (https://docs.travis-ci.com)
# (https://docs.travis-ci.com/user/languages/javascript-with-nodejs)
language: node_js
node_js: "6"
cache:
directories:
- $HOME/node_modules
node_js:
- "6"
- "4"
cache: yarn
before_script:
- npm install
script: npm run --silent lint
- yarn global add gulp
- yarn install
script: gulp --harmony lint
16 changes: 11 additions & 5 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,24 @@
# repository https://github.com/arcticicestudio/nord-terminix +
# author Arctic Ice Studio +
# email [email protected] +
# copyright Copyright (C) 2016 +
# copyright Copyright (C) 2017 +
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# [References]
# Circle CI
# (https://circleci.com/docs)
# (https://circleci.com/docs/language-nodejs)
# (https://circleci.com/docs/yarn)
machine:
node:
version: 6.1.0
version: 6
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
override:
- npm install
- yarn global add gulp
- yarn install
cache_directories:
- ~/.cache/yarn
test:
override:
- npm run --silent lint
- gulp --harmony lint

0 comments on commit 4e1f2bf

Please sign in to comment.