Skip to content

Commit 24a621d

Browse files
authored
Merge pull request #254 from rleddy/func
add functional tests to Travis
2 parents 9bdaf77 + 25fda7f commit 24a621d

18 files changed

+2674
-6
lines changed

.travis.yml

Lines changed: 39 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,42 @@
1-
language: node_js
2-
node_js:
3-
- '6.14'
4-
- '8'
5-
- '10'
6-
- '12'
1+
jobs:
2+
include:
3+
- stage: coverage_tests
4+
language: node_js
5+
node_js:
6+
- '6.14'
7+
- # stage name not required, will continue to use `test`
8+
language: node_js
9+
node_js:
10+
- '8'
11+
- # stage name not required, will continue to use `test`
12+
language: node_js
13+
node_js:
14+
- '10'
15+
- # stage name not required, will continue to use `test`
16+
language: node_js
17+
node_js:
18+
- '12'
19+
- stage: e2e-v8 # these can be made parallel by using different accounts or names
20+
language: node_js
21+
node_js:
22+
- '8'
23+
script:
24+
- npm install -g js-yaml
25+
- bash ./test-functional/e2evars.sh
26+
- stage: e2e-v10
27+
language: node_js
28+
node_js:
29+
- '10'
30+
script:
31+
- npm install -g js-yaml
32+
- bash ./test-functional/e2evars.sh
33+
- stage: e2e-v12
34+
language: node_js
35+
node_js:
36+
- '12'
37+
script:
38+
- npm install -g js-yaml
39+
- bash ./test-functional/e2evars.sh
740
notifications:
841
slack:
942
secure: RK3HxQ0I107uWCqq+yhfLwiJMBFqnkXq0fyZGbX3TuhIeVXG3huyuwzSVt3NHVX1KJiWbKuFnJOKFfIRPlZEVxrlqOHEoqUhwjC4Zt35QGBrSZQJF6aSKsL2qe8U042zcClrKDvZ4Ool34XAU255LKgeIJVkOmn8gYe/LIfUETGrbWxM1sm03cUpdXwy9ggDVLKifE8SJ/ZDXmzwCx9M/t/1BTX90u6OUsQHJbpkEkbAD8U3vCM49tdmnpV0lh0JZoQwf74+O5c1zE3yj0uDfGz9HAXUJ84Fcr8OAwBFlooUCKLbmWOi4aETzU/byzI6H//d1gGAydHrqnbb+esRr4UD7NvWQQP77ZcAOLeII3rDepzkCJ8ozi5ht246gIwimO2SbJ378tu9sfEaZo6bVXqg8FkNq/G1Swu/5gp9xp5r02lMRkQpIovXMe3o2emYjRF/zHJAKye9ISAHP0yXrqYUZDwn/Ll2OtgSYXg5/hP0R5CGWX8yr6ahOVGHJiF1ndQMnyUrLMAT4WPrd/joFWCmJsd/p8jncqaZYrjVb+FhuMfjUatmXSYY6cVV3aV+kgZyHuLTKQNa7Hp40I836lUAu+qOEZ8jwIKYWS5N8ge0IN2XVpE4JMfG/7UW1r9N7MY24pvNQww0NDPi5Zd1bQPurWwjnBV5YGHc5XGe2/8=

0 commit comments

Comments
 (0)