2016-04-18 17:22:23 -04:00
language : node_js
node_js :
2018-05-08 19:36:01 -04:00
- 8
2018-11-19 15:09:38 -05:00
- 10
2017-05-12 19:48:03 -04:00
env :
2018-05-08 19:37:09 -04:00
global :
- NODE_ENV=production
2020-10-09 16:46:35 -04:00
- NPM_TAG=latest
- RELEASE_TIMESTAMP="$(date +'%Y%m%d%H%M%S')"
2018-05-08 19:37:09 -04:00
matrix :
2017-05-14 15:56:06 -04:00
- NPM_SCRIPT="tap:unit -- --jobs=4"
- NPM_SCRIPT="tap:integration -- --jobs=4"
2016-04-18 17:22:23 -04:00
cache :
directories :
2018-06-28 10:34:54 -04:00
- "$HOME/.npm"
2018-06-28 10:51:16 -04:00
install :
2021-03-23 17:13:08 -04:00
- npm ci --production=false
2017-05-12 19:48:03 -04:00
script : npm run $NPM_SCRIPT
jobs :
include :
- env : NPM_SCRIPT=lint
2018-05-08 19:38:05 -04:00
node_js : 8
2018-05-31 17:03:55 -04:00
- env : NPM_SCRIPT=build
node_js : 8
2020-10-09 17:26:16 -04:00
if : not (type != pull_request AND (branch =~ /^(develop|master|hotfix\/)/))
2017-05-12 19:48:03 -04:00
- stage : release
2018-05-08 19:38:05 -04:00
node_js : 8
2017-07-19 12:04:22 -04:00
env : NPM_SCRIPT=build
before_deploy :
2020-10-09 16:46:35 -04:00
- >
if [ -z "$BEFORE_DEPLOY_RAN" ]; then
VPKG=$($(npm bin)/json -f package.json version)
export RELEASE_VERSION=${VPKG}-prerelease.${RELEASE_TIMESTAMP}
npm --no-git-tag-version version $RELEASE_VERSION
if [[ "$TRAVIS_BRANCH" == hotfix/* ]]; then # double brackets are important for matching the wildcard
export NPM_TAG=hotfix
fi
git config --global user.email "$(git log --pretty=format:"%ae" -n1)"
git config --global user.name "$(git log --pretty=format:"%an" -n1)"
export BEFORE_DEPLOY_RAN=true
fi
2017-05-12 19:48:03 -04:00
deploy :
2018-04-06 10:13:29 -04:00
- provider : npm
2018-05-09 16:47:06 -04:00
on :
2020-10-09 16:46:35 -04:00
branch :
- master
- develop
- hotfix/*
2018-12-03 14:24:00 -05:00
condition : $TRAVIS_EVENT_TYPE != cron
2017-05-12 19:48:03 -04:00
skip_cleanup : true
2018-04-06 10:13:29 -04:00
email : $NPM_EMAIL
api_key : $NPM_TOKEN
2020-10-09 16:46:35 -04:00
tag : $NPM_TAG
- provider : script
on :
branch :
- master
- develop
- hotfix/*
condition : $TRAVIS_EVENT_TYPE != cron
skip_cleanup : true
script : if npm info | grep -q $RELEASE_VERSION; then git tag $RELEASE_VERSION && git push https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git $RELEASE_VERSION; fi
2018-04-06 10:13:29 -04:00
- provider : script
2018-05-09 16:47:06 -04:00
on :
all_branches : true
2018-12-03 14:24:00 -05:00
condition : $TRAVIS_EVENT_TYPE != cron
2017-07-19 13:48:55 -04:00
skip_cleanup : true
2018-04-06 10:13:29 -04:00
script : npm run --silent deploy -- -x -r $GH_PAGES_REPO
2018-12-03 14:24:00 -05:00
- provider : script
on :
branch : develop
condition : $TRAVIS_EVENT_TYPE == cron
skip_cleanup : true
script : npm run i18n:src && npm run i18n:push
2018-05-08 23:37:54 -04:00
stages :
- test
- name : release
2020-10-09 17:26:16 -04:00
if : type != pull_request AND (branch =~ /^(develop|master|hotfix\/)/)