Merge pull request #877 from fsih/ymlUpdate

Update travis.yml to use jobs
This commit is contained in:
DD Liu 2019-08-06 17:34:18 -04:00 committed by GitHub
commit 8b68f9fa34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,11 @@
language: node_js language: node_js
node_js: node_js:
- 8 - 8
env:
global:
- NODE_ENV=production
matrix:
- NPM_SCRIPT="unit"
cache: cache:
directories: directories:
- node_modules - node_modules
@ -16,6 +21,14 @@ install:
- npm --production=false install - npm --production=false install
- npm --production=false update - npm --production=false update
- npm install --no-save canvas@1.6.11 - npm install --no-save canvas@1.6.11
script: npm run $NPM_SCRIPT
jobs:
include:
- env: NPM_SCRIPT=lint
- env: NPM_SCRIPT=build
if: not (branch in (master, develop) and type != pull_request)
- stage: release
env: NPM_SCRIPT=build
before_deploy: before_deploy:
- npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S) - npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S)
- git config --global user.email $(git log --pretty=format:"%ae" -n1) - git config --global user.email $(git log --pretty=format:"%ae" -n1)
@ -46,3 +59,7 @@ deploy:
condition: $TRAVIS_EVENT_TYPE == cron condition: $TRAVIS_EVENT_TYPE == cron
skip_cleanup: true skip_cleanup: true
script: npm run i18n:src && npm run i18n:push script: npm run i18n:src && npm run i18n:push
stages:
- test
- name: release
if: branch in (master, develop) and type != pull_request