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 d4ba181 commit 9b492dfCopy full SHA for 9b492df
.circleci/config.yml
.travis.yml
@@ -0,0 +1,31 @@
1
+language: node_js
2
+
3
+sudo: false
4
5
+notifications:
6
+ email:
7
+ - smith3816@gmail.com
8
9
+node_js:
10
+- 10
11
12
+before_install:
13
+- |
14
+ if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/'
15
+ then
16
+ echo "Only docs were updated, stopping build process."
17
+ exit
18
+ fi
19
+script:
20
21
+ if [ "$TEST_TYPE" = test ]; then
22
+ npm test -- --coverage && \
23
+ bash <(curl -s https://codecov.io/bash)
24
+ else
25
+ npm run $TEST_TYPE
26
27
+env:
28
+ matrix:
29
+ - TEST_TYPE=lint
30
+ - TEST_TYPE=test
31
+ - TEST_TYPE=test:15
0 commit comments