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 fe29775 commit 0298672Copy full SHA for 0298672
.travis.yml
@@ -8,14 +8,25 @@ node_js:
8
- '6'
9
- '4'
10
11
-script:
12
-- yarn lint
+before_install:
+- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.2.0
13
+- export PATH=$HOME/.yarn/bin:$PATH
14
+
15
+before_script:
16
- yarn build
-- yarn cover
17
18
+script:
19
+- if [ -n "${LINT-}" ]; then yarn lint; fi
20
+- if [ -z "${SKIPTESTS-}" ]; then yarn cover; fi
21
22
after_script:
23
- codeclimate-test-reporter < coverage/lcov.info
24
25
+matrix:
26
+ include:
27
+ - node_js: "node"
28
+ env: LINT=true SKIPTESTS=true
29
30
addons:
31
code_climate:
32
repo_token:
.yarnrc
0 commit comments