forked from getsentry/sentry-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (49 loc) · 1.18 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
branches:
only:
- master
- /^release\/.+$/
language: node_js
cache:
yarn: true
directories:
- node_modules
matrix:
include:
- name: 'deploy'
node_js: '10'
script: npm pack
after_success:
- npm install -g @zeus-ci/cli
- zeus upload -t "application/tar+npm" *.tgz
- name: 'lint and codecov'
node_js: '10'
script:
- yarn lint
- yarn codecov
- name: 'unit tests [node v10]'
node_js: '10'
script: yarn test
- name: 'unit tests [node v8]'
node_js: '8'
script: yarn test
- name: 'unit tests [node v6]'
node_js: '6'
script: yarn test
- name: 'integration tests [node v10]'
node_js: '10'
script: yarn test:integration
- name: 'integration tests [node v8]'
node_js: '8'
script: yarn test:integration
- name: 'integration tests [node v6]'
node_js: '6'
script: yarn test:integration
notifications:
webhooks:
urls:
- https://zeus.ci/hooks/ad511932-ca25-11e7-a96d-0a580a280309/public/provider/travis/webhook
on_success: always
on_failure: always
on_start: always
on_cancel: always
on_error: always