forked from faceyspacey/redux-first-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (29 loc) · 795 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
language: node_js
node_js:
- stable
cache: yarn
install: yarn --ignore-engines # ignore engines to test node 6, otherwise it fails on engine check
jobs:
include:
- stage: Build
name: Travis Status
script: npx travis-github-status
name: Linting
script: npm run lint
name: Flow
script: npm run flow
name: Snyk
script: snyk
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/5156be73e058008e1ed2
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/