aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-09-05 15:58:34 +0300
committerGitHub <noreply@github.com>2019-09-05 15:58:34 +0300
commit6feca4b65b78c674aea096906ecd7b46abebc36a (patch)
treeaab9c83dc61206ff0c29d840d5bf3fab1f3ed108 /.travis.yml
parentbb03625e4e20ed7680c789ae1321e66ab509d819 (diff)
parent8dc221b468ef76657eba6e31c3241f3fff226fa2 (diff)
downloadelectron-hot-reload-6feca4b65b78c674aea096906ecd7b46abebc36a.tar.xz
electron-hot-reload-6feca4b65b78c674aea096906ecd7b46abebc36a.zip
Merge pull request #3 from valentineus/developdevelop
v0.1.4
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..7abd2e2
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,45 @@
+language: node_js
+
+node_js:
+ - node
+
+os:
+ - linux
+
+dist:
+ - bionic
+
+services:
+ - docker
+
+notifications:
+ email:
+ - 'info@valentineus.link'
+
+cache:
+ yarn: true
+ directories:
+ - node_modules
+
+install:
+ - git stash --all
+ - yarn install
+ - yarn run build
+ - npm pack
+
+deploy:
+ - provider: npm
+ skip_cleanup: true
+ email: 'info@valentineus.link'
+ api_key: $NPM_PROJECT_TOKEN
+ on:
+ tags: true
+
+ - provider: releases
+ skip_cleanup: true
+ file_glob: true
+ file: 'electron-hot-reload-*.tgz'
+ email: 'info@valentineus.link'
+ api_key: $GITHUB_PROJECT_TOKEN
+ on:
+ tags: true