0.1.185-beta • Published 11 months ago

cloudbuild-task-local v0.1.185-beta

Weekly downloads
24
License
MIT
Repository
github
Last release
11 months ago

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();