Skip to content

Commit cc65857

Browse files
Travis Configuration (#4)
Add Travis configuration so tests run on each PR.
1 parent ce6aa21 commit cc65857

File tree

3 files changed

+3794
-1
lines changed

3 files changed

+3794
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules/*
2-
yarn.lock
32
yarn-error.log
43
.vscode/*
54
.DS_Store

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/
3+
dist: trusty
4+
node_js:
5+
- "lts/*"
6+
before_install:
7+
- unset _JAVA_OPTIONS # JVM heap sizes break closure compiler. #11203.
8+
script: yarn test
9+
branches:
10+
only:
11+
- master
12+
cache:
13+
yarn: true
14+
directories:
15+
- node_modules

0 commit comments

Comments
 (0)