UNPKG

514 BJavaScriptView Raw
1module.exports = {
2 detect: function() {
3 return !!process.env.SHIPPABLE
4 },
5
6 configuration: function() {
7 // http://docs.shippable.com/en/latest/config.html#common-environment-variables
8 console.log(' Shippable CI Detected')
9 return {
10 service: 'shippable',
11 build: process.env.BUILD_NUMBER,
12 build_url: process.env.BUILD_URL,
13 pr: process.env.PULL_REQUEST,
14 commit: process.env.COMMIT,
15 branch: process.env.BRANCH,
16 slug: process.env.REPO_NAME,
17 }
18 },
19}