Skip to content

Matrix jobs / tasks made easy

Need to run multiple variants of a job/task? Use a JavaScript loop

ts
import { job, task } from "@pandaci/core";

await job("Matix tasks", () => {
  [18, 20, 22].foreach((version) => {
    task.docker(`Matrix - ${version}`, { image: `node:${version}` }, () => {
      // ...
    });
  });
});