scratch-paint/.travis.yml

44 lines
1.3 KiB
YAML
Raw Normal View History

2017-07-13 15:06:10 -04:00
language: node_js
sudo: required
2017-07-13 15:06:10 -04:00
dist: trusty
node_js:
2019-08-01 14:59:09 -04:00
- 8
2017-07-13 15:06:10 -04:00
cache:
directories:
- node_modules
install:
- sudo apt-get update && sudo apt-get install -y libcairo2-dev libpango1.0-dev libssl-dev libjpeg62-dev libgif-dev pkg-config
2019-08-01 14:59:09 -04:00
- npm install --no-save canvas@1.6.11
2017-07-13 15:06:10 -04:00
- npm --production=false install
- npm --production=false update
before_deploy:
- npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S)
2017-07-13 15:06:10 -04:00
- 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
2017-07-13 15:06:10 -04:00
skip_cleanup: true
script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
- provider: script
on:
2017-10-12 17:20:30 -04:00
branch: develop
condition: $TRAVIS_EVENT_TYPE != cron
2017-07-13 15:06:10 -04:00
skip_cleanup: true
script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
2017-10-12 17:10:17 -04:00
- provider: npm
2017-10-12 17:20:30 -04:00
on:
branch: develop
condition: $TRAVIS_EVENT_TYPE != cron
2017-10-12 17:10:17 -04:00
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