forked from bpmn-io/bpmn-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (30 loc) · 820 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: node_js
node_js: '10'
jobs:
include:
- stage: test
addons:
firefox: 'latest-esr'
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+$