Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

env-ci

Package Overview
Dependencies
Maintainers
2
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

env-ci - npm Package Compare versions

Comparing version 7.2.0 to 7.2.1

2

package.json
{
"name": "env-ci",
"description": "Get environment variables exposed by CI services",
"version": "7.2.0",
"version": "7.2.1",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",

@@ -6,0 +6,0 @@ "ava": {

@@ -9,3 +9,3 @@ // https://jetbrains.com/help/space/automation-environment-variables.html#automation

configuration({env}) {
const projectKey = env.JB_SPACE_PROJECT_KEY?.toLowerCase();
const projectKey = env.JB_SPACE_PROJECT_KEY;
const repositoryName = env.JB_SPACE_GIT_REPOSITORY_NAME;

@@ -18,5 +18,5 @@ return {

branch: parseBranch(env.JB_SPACE_GIT_BRANCH),
slug: projectKey && repositoryName ? `${projectKey}/${repositoryName}` : undefined,
slug: projectKey && repositoryName ? `${projectKey.toLowerCase()}/${repositoryName}` : undefined,
};
},
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc