make format script apply to all files in apps/packages only #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format Code | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Prettier Action | |
uses: creyD/prettier_action@v4.3 | |
with: | |
commit_message: "formatted code" | |
clean_node_folder: true | |
prettier_options: "--write {apps,packages}/**/*.*" |