Skip to content

Commit ce712c8

Browse files
committed
Merge pull request shippableSamples#1 from rageshkrishna/master
Use new YML format and upgrade to latest sqlite package
2 parents c8e301f + a4f7da8 commit ce712c8

2 files changed

Lines changed: 10 additions & 14 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"mocha": "^1.18.2",
3131
"superagent": "^0.18.0",
3232
"xunit-file": "0.0.5",
33-
"sqlite3": "^2.2.3"
33+
"sqlite3": "^3.1.1"
3434
}
3535
}

shippable.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,18 @@ language: node_js
33

44
# Version number
55
node_js:
6-
- 0.10.25
6+
- "5.0"
77

88
# The path for Xunit to output test reports
99
env:
1010
- XUNIT_FILE=shippable/testresults/result.xml
1111

1212
# Create directories for test and coverage reports
13-
before_script:
14-
- mkdir -p shippable/testresults
15-
- mkdir -p shippable/codecoverage
16-
17-
# Running the tests with grunt
18-
script:
19-
- grunt
20-
21-
# Tell istanbul to generate a coverage report
22-
after_script:
23-
- ./node_modules/.bin/istanbul cover grunt -- -u tdd
24-
- ./node_modules/.bin/istanbul report cobertura --dir shippable/codecoverage/
13+
build:
14+
ci:
15+
- npm install
16+
- mkdir -p shippable/testresults
17+
- mkdir -p shippable/codecoverage
18+
- grunt
19+
- ./node_modules/.bin/istanbul cover grunt -- -u tdd
20+
- ./node_modules/.bin/istanbul report cobertura --dir shippable/codecoverage/

0 commit comments

Comments
 (0)