find-node-modules
Version:
Return an array of all parent node_modules directories
27 lines (23 loc) • 658 B
JavaScript
// https://buddy.works/knowledge/deployments/how-use-environment-variables#default-environment-variables
const {prNumber} = require('../lib/utils');
module.exports = {
detect({env}) {
return Boolean(env.BUDDY_WORKSPACE_ID);
},
configuration({env}) {
const pr = prNumber(env.BUDDY_EXECUTION_PULL_REQUEST_ID);
const isPr = Boolean(pr);
return {
name: 'Buddy',
service: 'buddy',
commit: env.BUDDY_EXECUTION_REVISION,
tag: env.BUDDY_EXECUTION_TAG,
build: env.BUDDY_EXECUTION_ID,
buildUrl: env.BUDDY_EXECUTION_URL,
branch: isPr ? undefined : env.BUDDY_EXECUTION_BRANCH,
pr,
isPr,
slug: env.BUDDY_REPO_SLUG,
};
},
};