forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (33 loc) · 654 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 654 Bytes
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
language: node_js
dist: trusty
sudo: required
addons:
apt:
packages:
- libnss3
- google-chrome-beta
env:
global:
- GOOGLE_CHROME_BINARY="/usr/bin/google-chrome-beta"
- PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
node_js:
- 6
- 8
script:
- node --version
- yarn --version
- yarn run build
# Tests have to run before Danger runs because
# danger-plugin-jest references the test output
- yarn run test
- yarn run danger
- yarn run flow
- yarn run lint && yarn run typescript && yarn run tslint
notifications:
email:
on_failure: change
cache:
yarn: true
bundler: true
directories:
- node_modules