Feature | Chicago Shotspotter Map #45
Workflow file for this run
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: Prettier | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: Prettify CSS, HTML, and Markdown files | |
uses: creyD/[email protected] | |
with: | |
commit_message: "✨ Prettified code ✨" | |
prettier_options: --write --trailing-comma es5 **/*.{css,html,md} | |
same_commit: true |