Skip to content

maybe this will work? #44

maybe this will work?

maybe this will work? #44

Workflow file for this run

name: Check syntax
on:
push:
jobs:
build:
name: Format content with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: latest
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write .
github_token: ${{ secrets.GITHUB_TOKEN }}