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 2a0ece0 commit ff78157Copy full SHA for ff78157
.github/workflows/nodejs.yml
.travis.yml
@@ -0,0 +1,16 @@
1
+language: node_js
2
+cache:
3
+ directories:
4
+ - ~/.npm
5
+notifications:
6
+ email: false
7
+node_js:
8
+ - '10'
9
+script:
10
+ - npm run test:prod && npm run build
11
+after_success:
12
+ - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then npm run travis-deploy-once "npm run deploy-docs"; fi
13
+ - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then npm run travis-deploy-once "npm run semantic-release"; fi
14
+branches:
15
+ except:
16
+ - /^v\d+\.\d+\.\d+$/
0 commit comments