scratch-paint/.travis.yml

70 lines
1.9 KiB
YAML
Raw Normal View History

2017-07-13 15:06:10 -04:00
language: node_js
node_js:
2019-07-29 13:02:51 -04:00
- 8
2019-07-30 19:05:20 -04:00
- 10
2019-07-30 10:25:48 -04:00
addons:
apt:
packages:
- libcairo2-dev
- libpango1.0-dev
- libssl-dev
- libjpeg62-dev
- libgif-dev
2019-07-30 19:05:20 -04:00
env:
global:
- NODE_ENV=production
matrix:
- NPM_SCRIPT="unit -- --jobs=1"
2017-07-13 15:06:10 -04:00
cache:
directories:
- node_modules
install:
- npm install canvas@1.6.11
2017-07-13 15:06:10 -04:00
- npm --production=false install
- npm --production=false update
2019-07-30 19:05:20 -04:00
script: npm run $NPM_SCRIPT
jobs:
include:
- env: NPM_SCRIPT=lint
node_js: 8
- env: NPM_SCRIPT=build
node_js: 8
if: not (branch in (master, develop) and type != pull_request)
- stage: release
node_js: 8
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:
all_branches: true
condition: $TRAVIS_BRANCH != develop && $TRAVIS_EVENT_TYPE != cron
skip_cleanup: true
script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
- provider: script
on:
branch: develop
condition: $TRAVIS_EVENT_TYPE != cron
skip_cleanup: true
script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
- provider: npm
on:
branch: develop
condition: $TRAVIS_EVENT_TYPE != cron
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
- provider: script
on:
branch: develop
condition: $TRAVIS_EVENT_TYPE == cron
skip_cleanup: true
script: npm run i18n:src && npm run i18n:push
stages:
- test
- name: release
if: branch in (master, develop) and type != pull_request