Bump react from 19.0.0-rc-45804af1-20241021 to 19.0.0-rc.0 #145
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Format with Prettier | |
run: yarn format | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Formatted files with Prettier" |