cloudbuild-task-local

v0.1.122-beta
A local node.js-only adapter for the cloudbuild-task-contracts.

cloudbuild-task-local

These NPM packages are typed with TypeScript MIT license Required Node

This package implements the cloudbuild-task-contracts abstraction for running a task locally. This allows a build task that was written against that abstraction to run on any machine, with certain CI system inputs/outputs mocked up. This is useful for development and automated testing of your task.

Example usage

import { LocalFactory } from 'cloudbuild-task-local';
import { run } from './MyPortableTask';

async function testRunner() {
  const mockedInputs = {
    input1: 'enabled',
  };
  const factory = await LocalFactory.CreateAsync(mockedInputs);
  run(factory);
}

testRunner();

Metadata

  • MIT
  • >= 10.0
  • Andrew Arnott
  • released 1/13/2022

Downloads

Maintainers