scratch-vm/.travis.yml

42 lines
1 KiB
YAML
Raw Normal View History

2016-04-18 17:22:23 -04:00
language: node_js
node_js:
- 8
2017-04-17 20:03:28 -04:00
- node
env:
global:
- NODE_ENV=production
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
sudo: false
cache:
directories:
- node_modules
install:
2017-11-17 11:48:22 -05:00
- npm --production=false install
- npm --production=false update
script: npm run $NPM_SCRIPT
jobs:
include:
- env: NPM_SCRIPT=lint
2018-05-08 19:38:05 -04:00
node_js: 8
- stage: release
2018-05-08 19:38:05 -04:00
node_js: 8
env: NPM_SCRIPT=build
before_deploy:
- npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%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: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
- provider: script
skip_cleanup: true
script: npm run --silent deploy -- -x -r $GH_PAGES_REPO
stages:
- test
- name: release
if: branch in (master, develop)