Skip to content

add hello to the title of the docs readme #46

add hello to the title of the docs readme

add hello to the title of the docs readme #46

Workflow file for this run

name: Prettier
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install deps
run: npm ci
- name: Prettier check
run: npm run format:check