We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f4a32 commit 8197ab0Copy full SHA for 8197ab0
.github/workflows/lint.yaml
@@ -7,7 +7,7 @@ on:
7
git-diff-args:
8
required: false
9
type: string
10
- default: ""
+ default: ''
11
12
permissions:
13
contents: read
@@ -33,9 +33,9 @@ jobs:
33
shell: bash
34
run: |
35
if [[ -n "${{ inputs.git-diff-args }}" ]]; then
36
- yarn run --silent prettier:diff -- --check ${{ inputs.git-diff-args }}
+ yarn run --silent prettier:diff --check ${{ inputs.git-diff-args }}
37
else
38
- yarn run --silent prettier:diff -- --check
+ yarn run --silent prettier:diff --check
39
fi
40
- uses: actions/setup-python@v5
41
with:
0 commit comments