mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-09 14:12:13 -05:00
Merge pull request #877 from fsih/ymlUpdate
Update travis.yml to use jobs
This commit is contained in:
commit
8b68f9fa34
1 changed files with 47 additions and 30 deletions
35
.travis.yml
35
.travis.yml
|
@ -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,33 +21,45 @@ 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
|
||||||
before_deploy:
|
script: npm run $NPM_SCRIPT
|
||||||
- npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S)
|
jobs:
|
||||||
- git config --global user.email $(git log --pretty=format:"%ae" -n1)
|
include:
|
||||||
- git config --global user.name $(git log --pretty=format:"%an" -n1)
|
- env: NPM_SCRIPT=lint
|
||||||
deploy:
|
- env: NPM_SCRIPT=build
|
||||||
- provider: script
|
if: not (branch in (master, develop) and type != pull_request)
|
||||||
|
- stage: release
|
||||||
|
env: NPM_SCRIPT=build
|
||||||
|
before_deploy:
|
||||||
|
- 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.name $(git log --pretty=format:"%an" -n1)
|
||||||
|
deploy:
|
||||||
|
- provider: script
|
||||||
on:
|
on:
|
||||||
all_branches: true
|
all_branches: true
|
||||||
condition: $TRAVIS_BRANCH != develop && $TRAVIS_EVENT_TYPE != cron
|
condition: $TRAVIS_BRANCH != develop && $TRAVIS_EVENT_TYPE != cron
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
|
script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
|
||||||
- provider: script
|
- provider: script
|
||||||
on:
|
on:
|
||||||
branch: develop
|
branch: develop
|
||||||
condition: $TRAVIS_EVENT_TYPE != cron
|
condition: $TRAVIS_EVENT_TYPE != cron
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
|
script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
|
||||||
- provider: npm
|
- provider: npm
|
||||||
on:
|
on:
|
||||||
branch: develop
|
branch: develop
|
||||||
condition: $TRAVIS_EVENT_TYPE != cron
|
condition: $TRAVIS_EVENT_TYPE != cron
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
email: $NPM_EMAIL
|
email: $NPM_EMAIL
|
||||||
api_key: $NPM_TOKEN
|
api_key: $NPM_TOKEN
|
||||||
- provider: script
|
- provider: script
|
||||||
on:
|
on:
|
||||||
branch: develop
|
branch: develop
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue