forked from vega/vega-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (31 loc) · 761 Bytes
/
Copy path.travis.yml
File metadata and controls
37 lines (31 loc) · 761 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
34
35
36
37
dist: trusty
addons:
chrome: stable
language: node_js
node_js:
- "6"
- "8"
before_install:
# Minimal installation as desdcribed in https://github.com/martinda/gnu-parallel
- wget http://git.savannah.gnu.org/cgit/parallel.git/plain/src/parallel
- chmod +x parallel
- cp parallel sem
- sudo mv parallel sem /usr/local/bin
script:
- npm run build
- npm run test:nocompile # already run schema and tsc in build
- npm run data
- npm run check:schema
- npm run build:examples-only
- npm run check:examples
- npm run codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
cache: yarn
notifications:
email: never
slack:
rooms:
- vega-js:eJe5JNgxfucTVcTMbeplKX3v
on_success: never
on_failure: always