npm(deps): bump react-dom from 19.2.0 to 19.2.1 #71
Workflow file for this run
This file contains hidden or 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
| # This GitHub Actions workflow runs two jobs: | |
| # | |
| # 1. `lint`: Checks the code for linting issues using the Bun runtime. | |
| # 2. `format`: Formats the code using the Bun runtime. | |
| # | |
| # The workflow checks out the code, sets up the Bun environment, and then runs the | |
| # respective linting and formatting commands. | |
| name: Beautify | |
| on: ["push", "pull_request"] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - name: Setup bun environment | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Check the code | |
| run: bun run check |