We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb02200 commit 6319a9aCopy full SHA for 6319a9a
.github/actions/prettierCheck/action.yml
@@ -7,12 +7,9 @@ inputs:
7
runs:
8
using: "composite"
9
steps:
10
- - name: Print inputs
11
- shell: bash
12
- run: |
13
- echo "Path to validate: ${{ inputs.pathToValidate }}"
14
-
15
- name: Prettier Check
16
shell: bash
17
run: |
18
- npx eslint --no-error-on-unmatched-pattern ${{ inputs.pathToValidate }}
+ echo "::group::Run Prettier Check"
+ npx prettier --check --ignore-path .gitignore --ignore-path .prettierignore ${{ inputs.pathToValidate }}
+ echo "::endgroup::"
0 commit comments