Deletes an environment variable on CircleCI

This will remove one or several environment variables from your CircleCI project.

Command line

yarn run setenv USER_NAME API_KEY

JavaScript

const onCircle = require('on-circle');
await onCircle.setEnvironmentVariables({
  USER_NAME: false,
  API_KEY: false,
});