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" + } + ] + });