chore(deps-dev): update dependency vite to v8.0.7 #8912
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
| name: Format code | |
| on: [push, pull_request] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: ⬢ Enable Corepack | |
| shell: bash | |
| run: npm install --global --force corepack | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run format | |
| run: pnpm format | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v7.1.0 | |
| with: | |
| commit_message: 'chore: apply formatting changes' | |
| branch: ${{ github.head_ref }} |