Skip to content

Commit

Permalink
Add yml support to prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot committed Aug 18, 2022
1 parent 8d6bae2 commit ebb2b4b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -74,7 +74,7 @@ commands:
command: |
node scripts/use-react-version
# log a patch for maintainers who want to check out this change
git --no-pager diff HEAD
git --no-pager diff HEAD
- restore_cache:
name: Restore yarn cache
keys:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-if-pr-has-label.yml
Expand Up @@ -6,11 +6,11 @@ on:

jobs:
test-label-applied:
# Tests that label is added on the PR
# Tests that label is added on the PR
runs-on: ubuntu-latest
steps:
- uses: mnajdova/github-action-required-labels@v2.0
with:
mode: minimum
count: 1
labels: ""
labels: ''
2 changes: 1 addition & 1 deletion .github/workflows/no-response.yml
Expand Up @@ -23,4 +23,4 @@ jobs:
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
Since the issue is missing key information and has been inactive for 7 days, it has been automatically closed.
If you wish to see the issue reopened, please provide the missing information.
If you wish to see the issue reopened, please provide the missing information.
2 changes: 1 addition & 1 deletion scripts/prettier.js
Expand Up @@ -48,7 +48,7 @@ function runPrettier(options) {
});

const files = glob
.sync('**/*.{js,jsx,md,tsx,ts,json,html,css,prisma}', {
.sync('**/*.{js,jsx,md,tsx,ts,json,html,css,prisma,yml}', {
cwd: workspaceRoot,
gitignore: true,
ignore: [
Expand Down

0 comments on commit ebb2b4b

Please sign in to comment.