From 14e1f91153c1296924de8d42974ee0c17d6dcab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B8is=C3=A6ther=20Rasch?= Date: Sun, 28 Jan 2024 21:08:45 +0100 Subject: [PATCH] Run `prettier --write .` --- .github/workflows/nodejs-lint-reusable.yml | 10 +++++----- run/ms-idp-workflow-run-auth/action.js | 4 +--- run/ms-idp-workflow-run-auth/types.d.ts | 5 ++++- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nodejs-lint-reusable.yml b/.github/workflows/nodejs-lint-reusable.yml index 98b0d57..fa0f570 100644 --- a/.github/workflows/nodejs-lint-reusable.yml +++ b/.github/workflows/nodejs-lint-reusable.yml @@ -5,7 +5,7 @@ on: inputs: checkout-parameters: type: string - default: '{}' + default: "{}" description: > A JSON object string specifying the inputs for the actions/checkout GitHub action. @@ -30,12 +30,12 @@ on: If true, warnings and errors will be reported to GitHub actions. npm-install-command: type: string - default: 'clean-install' + default: "clean-install" description: | The npm command to run in order to install package dependencies. npm-install-arguments: type: string - default: '[]' + default: "[]" description: | Optional. Additional argument passed to the npm install command during package installation. @@ -57,7 +57,7 @@ on: Whether the ESLint checker job should be executed. eslint-parameters: type: string - default: '{}' + default: "{}" description: > A JSON object string specifying the inputs for the thnetii/github-actions/run/gh-actions-eslint GitHub action. @@ -68,7 +68,7 @@ on: Whether the Prettier checker job should be executed. prettier-parameters: type: string - default: '{}' + default: "{}" description: > A JSON object string specifying the inputs for the thnetii/github-actions/run/gh-actions-prettier GitHub action. diff --git a/run/ms-idp-workflow-run-auth/action.js b/run/ms-idp-workflow-run-auth/action.js index f8b039a..81df9ea 100644 --- a/run/ms-idp-workflow-run-auth/action.js +++ b/run/ms-idp-workflow-run-auth/action.js @@ -4,9 +4,7 @@ const httpClientModule = require("@actions/http-client"); const msalNodeModule = import("@azure/msal-node"); -const { - bindCoreHelpers, -} = require("../../lib/gh-actions-core-helpers"); +const { bindCoreHelpers } = require("../../lib/gh-actions-core-helpers"); const buildGhaHttpClient = require("../../lib/gh-actions-http-client"); const { saveStateEx: saveState } = bindCoreHelpers(ghaCore); diff --git a/run/ms-idp-workflow-run-auth/types.d.ts b/run/ms-idp-workflow-run-auth/types.d.ts index 53697a3..09c2bbb 100644 --- a/run/ms-idp-workflow-run-auth/types.d.ts +++ b/run/ms-idp-workflow-run-auth/types.d.ts @@ -1,4 +1,7 @@ -export type { AzureCloudInstance, Configuration as MsalConfiguration } from "@azure/msal-node"; +export type { + AzureCloudInstance, + Configuration as MsalConfiguration, +} from "@azure/msal-node"; export type GhaActionAuthMethod = | "ms-idp-federated-credential" | "ms-idp-temporary-certificate"