Skip to content

Fix prettier formatting GitHub action #564

Fix prettier formatting GitHub action

Fix prettier formatting GitHub action #564

Workflow file for this run

name: Formatting
on:
pull_request:
paths:
- '**.js'
- '**.json'
- '**.md'
- '**.ts'
- '**.yaml'
- '**.yml'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Prettify code
uses: creyD/prettier_action@v4.6
with:
prettier_options: --write **.{js,json,md,ts,yaml,yml}
only_changed: True