bpmn-js/.travis.yml

32 lines
820 B
YAML
Raw Normal View History

2018-10-25 18:52:24 +00:00
language: node_js
node_js: '10'
jobs:
include:
- stage: test
addons:
2018-02-26 08:29:32 +00:00
firefox: 'latest-esr'
2019-04-12 14:13:28 +00:00
before_script:
- ./tasks/wiredeps
script:
- COVERAGE=1 TEST_BROWSERS=Firefox,PhantomJS xvfb-run npm run all
- npx codecov
- stage: update integration test
script: './tasks/stages/update-integration-test'
- stage: update examples
script: './tasks/stages/update-examples'
- stage: update demo
script: './tasks/stages/update-demo'
- stage: update website
script: './tasks/stages/update-website'
stages:
- test
- name: update integration test
if: tag =~ ^v\d
- name: update examples
if: tag =~ ^v\d+\.\d+\.\d+$
- name: update demo
if: tag =~ ^v\d+\.\d+\.\d+$
- name: update website
if: tag =~ ^v\d+\.\d+\.\d+$