Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit e4070b3

Browse files
authored
Merge pull request #140 from mulesoft/develop
Update dependencies. Automate npm publishing
2 parents 423f654 + f532ff9 commit e4070b3

File tree

6 files changed

+4152
-4878
lines changed

6 files changed

+4152
-4878
lines changed

.travis.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,31 @@ sudo: false
22

33
language: node_js
44

5+
addons:
6+
chrome: stable
7+
58
env:
69
- MOZ_HEADLESS=1
710

811
script: npm run lint && npm run test-server-open && npm run test-node && npm run test-browser
912
after_script: npm run test-server-close
1013

1114
node_js:
12-
- "8"
13-
- "lts/*"
15+
- "10"
16+
- "12"
17+
- "13"
1418
- "node"
1519

1620
cache:
1721
directories:
1822
- node_modules
1923
- $HOME/.npm
24+
25+
deploy:
26+
provider: npm
27+
email: "$NPM_EMAIL"
28+
api_key: "$NPM_TOKEN"
29+
skip_cleanup: true
30+
on:
31+
tags: true
32+
node: "node"

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ module.exports = function (config) {
113113
*
114114
* @type {Array}
115115
*/
116-
browsers: isTravis ? ['PhantomJS', 'Firefox'] : ['Chrome', 'Firefox', 'PhantomJS'],
116+
browsers: isTravis ? ['ChromeHeadless', 'Firefox'] : ['Chrome', 'Firefox'],
117117

118118
/**
119119
* If a browser does not capture within a given timeout, kill it.

0 commit comments

Comments
 (0)