forked from shippableSamples/sample_node_sqlite
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshippable.yml
More file actions
executable file
·45 lines (33 loc) · 798 Bytes
/
shippable.yml
File metadata and controls
executable file
·45 lines (33 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Language setting
language: node_js
# Version number
node_js:
- 0.10.25
- 0.11
# The path for Xunit to output test reports
env:
- XUNIT_FILE=shippable/testresults/result.xml
# Create directories for test and coverage reports
before_script:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
archive: true
#build_image: shippable/minv2:beta
addons:
hosts:
- google.com
- asdf.com
addons:
firefox: "28.0"
# Running the tests with grunt
script:
- grunt
#build_image: shippable/minv2:beta
# Tell istanbul to generate a coverage report
after_script:
- ./node_modules/.bin/istanbul cover grunt -- -u tdd
- ./node_modules/.bin/istanbul report cobertura --dir shippable/codecoverage/
#cache: true
branches:
except:
- test-master