luminati-tunnel
Version:
HTTP/HTTPS tunnel proxy for luminati.io using round robin strategy.
30 lines (25 loc) • 665 B
YAML
language: node_js
node_js:
- lts/*
- node
after_success: npm run coverage
stages:
- Test
- name: Release
if: branch = master AND commit_message !~ /(release|no-release)/
jobs:
include:
- stage: Release
node_js: lts/*
install: npm install --no-package-lock
before_deploy:
- git config user.email "travis@travis-ci.org"
- git config user.name "Travis CI"
- git remote set-url origin https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
- git checkout master
deploy:
skip_cleanup: true
provider: script
script: npm run release
on:
branch: master