From 653b12c623de64d153fe8e0d24e85f5059d8b945 Mon Sep 17 00:00:00 2001 From: adrians5j Date: Fri, 26 Jan 2024 17:20:15 +0100 Subject: [PATCH] chore: run prettier [no ci] --- .../wac/jobs/createValidateWorkflowsJob.ts | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/wac/jobs/createValidateWorkflowsJob.ts b/.github/workflows/wac/jobs/createValidateWorkflowsJob.ts index 128b4248c93..36aaa5a46be 100644 --- a/.github/workflows/wac/jobs/createValidateWorkflowsJob.ts +++ b/.github/workflows/wac/jobs/createValidateWorkflowsJob.ts @@ -1,15 +1,16 @@ import { createJob } from "./createJob"; -export const createValidateWorkflowsJob = () => createJob({ - name: "Validate workflows", - steps: [ - { - name: "Install dependencies", - run: "yarn --immutable" - }, - { - name: "Validate", - run: "npx github-actions-wac validate" - } - ] -}); +export const createValidateWorkflowsJob = () => + createJob({ + name: "Validate workflows", + steps: [ + { + name: "Install dependencies", + run: "yarn --immutable" + }, + { + name: "Validate", + run: "npx github-actions-wac validate" + } + ] + });