UNPKG

392 BJavaScriptView Raw
1module.exports = {
2
3 detect: function () {
4 return !!process.env.TEAMCITY_VERSION;
5 },
6
7 configuration: function () {
8 console.log(' TeamCity CI Detected');
9 return {
10 service: 'teamcity',
11 commit: process.env.BUILD_VCS_NUMBER,
12 branch: process.env.BRANCH_NAME,
13 build: process.env.BUILD_NUMBER
14 };
15 }
16
17};
\No newline at end of file