Skip to content

Az/date fix

Az/date fix #14

Workflow file for this run

name: Prettier Check
on:
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
persist-credentials: false
- name: Prettify code
uses: creyD/prettier_action@v4.6
with:
dry: True
prettier_options: "--write ."
github_token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}