-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vanduynslagerp/update
Updates
- Loading branch information
Showing
7 changed files
with
2,883 additions
and
576 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 |
---|---|---|
@@ -1,35 +1,45 @@ | ||
sudo: false | ||
dist: trusty | ||
language: node_js | ||
node_js: | ||
- node | ||
- 8 | ||
- 6 | ||
- 4 | ||
os: | ||
- linux | ||
- osx | ||
cache: | ||
directories: | ||
- node_modules | ||
branches: | ||
only: | ||
- master | ||
- /^greenkeeper.*$/ | ||
git: | ||
depth: 3 | ||
cache: | ||
directories: node_modules | ||
env: | ||
global: | ||
- GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) | ||
depth: 999 | ||
before_install: | ||
- if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi | ||
- if [[ `npm -v` < 5* ]]; then npm install -g npm@5; fi | ||
- npm install -g greenkeeper-lockfile@1 | ||
before_script: | ||
- npm prune | ||
- greenkeeper-lockfile-update | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 --retry 3 -o ./cc-test-reporter; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 --retry 3 -o ./cc-test-reporter; fi | ||
- chmod +x ./cc-test-reporter | ||
script: | ||
- npm run test | ||
after_script: | ||
- greenkeeper-lockfile-upload | ||
after_success: | ||
- if [ -n "${CC_TEST_REPORTER_ID:-}" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -d; fi | ||
- if [ -n "${CODECOV_TOKEN:-}" ]; then npm run codecov; fi | ||
env: | ||
- BUILD_LEADER_ID=7 | ||
jobs: | ||
include: | ||
- stage: release | ||
node_js: 8 | ||
os: linux | ||
before_install: | ||
- npm install -g greenkeeper-lockfile@1 | ||
before_script: | ||
- npm prune | ||
- greenkeeper-lockfile-update | ||
script: npm run test | ||
after_script: | ||
- greenkeeper-lockfile-upload | ||
after_success: | ||
- if [ -n "${CODECOV_TOKEN:-}" ]; then npm run codecov; fi | ||
- npm run semantic-release |
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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = {extends: ['@commitlint/config-angular']}; |
Oops, something went wrong.