Skip to content

Commit

Permalink
chore(config): initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 committed Oct 25, 2024
1 parent 7c57ba3 commit 93e0567
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Prettier Code Formatter

on:
push:
branches:
- main
pull_request:

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}

- name: Create .prettierrc.yaml
uses: 1arp/[email protected]
with:
path: '/'
isAbsolutePath: false
file: '.prettierrc.yaml'
content: |
overrides:
- files:
- "*.md"
options:
parser: "markdown"
printWidth: 100
proseWrap: "always"
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write --config .prettierrc.yaml
only_changed: true
commit_message: 'chore(config): prettied code'

lint:
uses: kurocado-studio/styleguide/.github/workflows/workflow.lint.yml@main
secrets: inherit
12 changes: 12 additions & 0 deletions .idea/.github.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/material_theme_project_new.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions profile/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Hello World

0 comments on commit 93e0567

Please sign in to comment.