Skip to content

Bump react and @types/react #8

Bump react and @types/react

Bump react and @types/react #8

Workflow file for this run

name: Format
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Format with Prettier
run: npm run format
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Formatted files with Prettier"