Skip to content

readme image fix + typo [skip release] #107

readme image fix + typo [skip release]

readme image fix + typo [skip release] #107

Workflow file for this run

name: Prettier Autoformat
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
prettier:
permissions:
contents: write
actions: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write ./
github_token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}