-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHI-#10 Update CI build configurations
- Loading branch information
1 parent
21abc3d
commit 4e1f2bf
Showing
2 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |