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

32 lines
627 B
YAML
Raw Normal View History

2019-08-17 02:40:53 +02:00
language: node_js
node_js:
- 12
jobs:
include:
2020-06-11 15:31:36 +02:00
- stage: "Tests"
name: "Tests without proxy"
script: npm run test
2020-07-06 02:01:01 +02:00
- name: "Tests reports"
script: npm run test-reports
- name: "Tests rpki"
script: npm run test-rpki
- name: "Tests prefix generation"
script: npm run test-generate
2020-06-11 15:31:36 +02:00
- name: "Tests with proxy"
before_script:
- npm install -g anyproxy
- nohup anyproxy --port 8001 &
- ANYPROXY_PID=$!
script:
2020-07-06 02:01:01 +02:00
- npm run test-proxy
2020-06-11 15:31:36 +02:00
after_script:
- kill $ANYPROXY_PID
2019-08-17 02:40:53 +02:00
cache:
npm: true
2019-08-17 02:40:53 +02:00
directories:
- node_modules