1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00
Files
nttgin-BGPalerter/.travis.yml
2020-06-11 15:31:36 +02:00

26 lines
496 B
YAML

language: node_js
node_js:
- 12
jobs:
include:
- stage: "Tests"
name: "Tests without proxy"
script: npm run test
- name: "Tests with proxy"
before_script:
- npm install -g anyproxy
- nohup anyproxy --port 8001 &
- ANYPROXY_PID=$!
script:
- ./node_modules/.bin/mocha --exit tests/proxy_tests/*.js --require @babel/register
after_script:
- kill $ANYPROXY_PID
cache:
npm: true
directories:
- node_modules