We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce6aa21 commit cc65857Copy full SHA for cc65857
.gitignore
@@ -1,5 +1,4 @@
1
node_modules/*
2
-yarn.lock
3
yarn-error.log
4
.vscode/*
5
.DS_Store
.travis.yml
@@ -0,0 +1,15 @@
+language: node_js
+sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/
+dist: trusty
+node_js:
+ - "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