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

@forestadmin/devops

Package Overview
Dependencies
Maintainers
12
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forestadmin/devops

Forest Admin internal DevOps toolbox

  • 2.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33
increased by3200%
Maintainers
12
Weekly downloads
 
Created
Source

Forest Admin DevOps Tools

Build Status Coverage

Slack Token

You can create a token by following this link https://api.slack.com/custom-integrations/legacy-tokens.

How to?

Release

This process will:

  • merge devel into master (if necessary),
  • add a specific tag (if necessary).
require('dotenv').config();
import { ReleaseManager } from '@forestadmin/devops';

const OPTIONS = { withVersion: true };
new ReleaseManager(OPTIONS).create();

Arguments:

  • options:
    • withVersion: Boolean. True if project has version.

Send a release note

Sends a note of the changes released to a specific Slack channel.

require('dotenv').config();
import { ReleaseNoteManager } from '@forestadmin/devops';

const { DEVOPS_SLACK_TOKEN, DEVOPS_SLACK_CHANNEL } = process.env;
const OPTIONS = { releaseIcon: '🌱', withVersion: true };

new ReleaseNoteManager(DEVOPS_SLACK_TOKEN, DEVOPS_SLACK_CHANNEL, OPTIONS).create();

Arguments:

Update the coverage badge

This process will update the coverage badge in the README.md file base on the lcov coverage report.

import { CoverageManager } from '@forestadmin/devops';

new CoverageManager().updateBadge();

Keywords

FAQs

Package last updated on 12 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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