Skip to content

Commit

Permalink
Run prettier --write .
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikhr committed Jan 28, 2024
1 parent 24e9065 commit 14e1f91
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs-lint-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand All @@ -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.
Expand All @@ -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.
Expand Down
4 changes: 1 addition & 3 deletions run/ms-idp-workflow-run-auth/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Check failure on line 7 in run/ms-idp-workflow-run-auth/action.js

View workflow job for this annotation

GitHub Actions / Node.js (specialized for run/ms-idp-workflow-run-auth) / ESLint

Missing file extension "cjs" for "../../lib/gh-actions-core-helpers"

Missing file extension "cjs" for "../../lib/gh-actions-core-helpers" eslint(import/extensions)
const buildGhaHttpClient = require("../../lib/gh-actions-http-client");

const { saveStateEx: saveState } = bindCoreHelpers(ghaCore);
Expand Down
5 changes: 4 additions & 1 deletion run/ms-idp-workflow-run-auth/types.d.ts
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 14e1f91

Please sign in to comment.