Schedule tasks in a monorepo
Перейти к файлу
Ken Chau cd18631441 applying package updates 2021-05-04 06:50:40 +00:00
.github/workflows making the graph generation respect tasks that have no deps 2020-06-17 08:51:54 -07:00
src Option to continue task-schedule (rest of graph) even if a task has failed (#25) 2020-10-22 13:02:07 -07:00
.eslintignore enable linting 2020-04-03 13:52:59 +02:00
.eslintrc.js the explicit return type checker is not working well 2020-07-13 15:13:41 -07:00
.gitignore bundle dependencies to provide standalone module 2020-04-06 13:09:01 +02:00
.npmignore build: Remove bundling (#24) 2020-10-22 17:34:58 +02:00
.prettierrc adding some fixes for linting 2020-06-02 14:06:59 -07:00
CHANGELOG.json applying package updates 2021-05-04 06:50:40 +00:00
CHANGELOG.md applying package updates 2021-05-04 06:50:40 +00:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-03-30 03:38:15 -07:00
LICENSE Initial LICENSE commit 2020-03-30 03:38:12 -07:00
README.md Change priority API to be package specific (#14) 2020-07-15 07:36:25 -07:00
SECURITY.md Initial SECURITY.md commit 2020-03-30 03:38:13 -07:00
jest.config.js first running test 2020-03-31 11:46:09 +02:00
package.json applying package updates 2021-05-04 06:50:40 +00:00
tsconfig.json add infrastructure for tests 2020-03-31 09:54:39 +02:00
yarn.lock chore(update): upgrade p-graph to latest version (#30) 2021-04-28 15:29:22 +03:00

README.md

@microsoft/task-scheduler

Run a sequence of steps across all the packages of a monorepo.

Why

  • This tool does not assume any workspace/package manager so it can be used on any JavaScript repository.
  • The steps run on the main thread, sparing the cost of spawning one process per step. If parallelization is needed, the implementation of the steps can spawn processes.
  • This tool optimizes CI builds performance by avoiding unnecessary waiting (see example below).
  • This tool has no dependencies and is very small.
  • Its interface makes it easy to compose with other tools to get fancy pipelines (eg. parallelization, profiling, throttling...)
  • Running the tasks on the main node process allows for cross-step in-memory memoization

Usage

const { createPipeline } = require("@microsoft/task-scheduler");

// this graph describes a topological graph
// e.g. {foo: {location: 'packages/foo', dependencies: ['bar']}, bar: { ... }}
const graph = getDependencyGraph();

const pipeline = await createPipeline(graph)
  // defining a task with NO task dependencies
  .addTask({
    name: "prepare",
    run: prepare
  })
  // defining a task with task dependencies as well as the topological deps
  .addTask({
    name: "build",
    run: build,
    deps: ["prepare"],
    topoDeps: ["build"]
  })
  .addTask({
    name: "test",
    run: test,
    deps: ["build"]
  })
  .addTask({
    name: "bundle",
    run: bundle,
    deps: ["build"]
  })
  // you can call go() with no parameters to target everything, or specify which packages or tasks to target
  .go({
    packages: ["foo", "bar"],
    tasks: ["test", "bundle"]
  });

async function prepare(cwd, stdout, stderr) {
...
}

async function build(cwd, stdout, stderr) {
...
}

async function test(cwd, stdout, stderr) {
...
}

async function bundle(cwd, stdout, stderr) {
...
}

A Task is described by this:

type Task = {
  /** name of the task */
  name: string;

  /** a function that gets invoked by the task-scheduler */
  run: (cwd: string, stdout: Writable, stderr: Writable) => Promise<boolean>;

  /** dependencies between tasks within the same package (e.g. `build` -> `test`) */
  deps?: string[];

  /** dependencies across packages within the same topological graph (e.g. parent `build` -> child `build`) */
  topoDeps?: string[];

  /** An optional priority to set for packages that have this task. Unblocked tasks with a higher priority will be scheduled before lower priority tasks. */
  priorities?: {
    [packageName: string]: number;
  };
};

Here is how the tasks defined above would run on a repo which has two packages A and B, A depending on B:


A:            [-prepare-]         [------build------] [----test----]
                                                      [-----bundle-----]
B: [-prepare-] [------build------] [----test----]
                                   [-----bundle-----]
----------> time

Here is how the same workflow would be executed by using lerna:


A:            [-prepare-]                   [------build------] [----test----][-----bundle-----]

B: [-prepare-]           [------build------]                    [----test----][-----bundle-----]

----------> time

Contributing

Development

This repo uses beachball for automated releases and semver. Please include a change file by running:

$ yarn change

CLA

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.