UNPKG
@atlaskit/build-utils
Version:
latest (2.6.2)
2.6.2
2.6.1
2.6.0
2.5.0
2.4.0
2.3.0
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.12.1
1.12.0
1.11.0
1.7.0
1.3.0
1.2.0
1.0.0
Collection of utilities to used during the release process of Atlaskit
@atlaskit/build-utils
/
isRunningInPipelines.js
9 lines
(7 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// @flow
function
isRunningInPipelines
(
) {
const
{
CI
} = process.
env
;
const
{
BITBUCKET_BUILD_NUMBER
} = process.
env
;
return
!!
CI
&& !!
BITBUCKET_BUILD_NUMBER
; }
module
.
exports
= isRunningInPipelines;