* Returns an identifier that is unique to each CircleCI build, discerning for * parallelized builds * * Note that this is different from the workflow ID, which is common across all, * and also different from the build number, which is common across parallelized * builds. * @return {string}
()
| 193 | * @return {string} |
| 194 | */ |
| 195 | function circleciUniqueBuildNumber() { |
| 196 | return isCircleci |
| 197 | ? `${env('CIRCLE_BUILD_NUM')}.${env('CIRCLE_NODE_INDEX')}` |
| 198 | : ''; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Returns true for parallelized CircleCI builds. |
no test coverage detected