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

@factorialco/gat

Package Overview
Dependencies
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@factorialco/gat - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

1

dist/job.d.ts

@@ -23,2 +23,3 @@ export interface ConcurrencyGroup {

export interface JobOptions<Step, Runner, Name> {
prettyName?: string;
ifExpression?: string;

@@ -25,0 +26,0 @@ runsOn?: Runner;

3

dist/workflow.js

@@ -56,5 +56,6 @@ "use strict";

: undefined,
jobs: Object.fromEntries(this.jobs.map(({ name, options: { ifExpression, runsOn, matrix, env, steps, dependsOn, services, timeout, concurrency, outputs, }, }) => [
jobs: Object.fromEntries(this.jobs.map(({ name, options: { prettyName, ifExpression, runsOn, matrix, env, steps, dependsOn, services, timeout, concurrency, outputs, }, }) => [
name,
{
name: prettyName,
if: ifExpression,

@@ -61,0 +62,0 @@ "runs-on": this.assignRunner(runsOn),

@@ -194,2 +194,11 @@ "use strict";

});
(0, vitest_1.it)("supports a pretty name for the job", () => {
const workflow = new workflow_1.Workflow("Job with pretty name")
.on("push")
.addJob("job1", {
prettyName: "My pretty name",
steps: [{ name: "Do something", run: "exit 0" }],
});
(0, vitest_1.expect)(workflow.compile()).toMatchSnapshot();
});
});
{
"name": "@factorialco/gat",
"version": "0.0.12",
"version": "0.0.13",
"description": "TODO",

@@ -5,0 +5,0 @@ "bin": {

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