Skip to content

chore(deps): update pnpm to v11.21.0 #9483

chore(deps): update pnpm to v11.21.0

chore(deps): update pnpm to v11.21.0 #9483

Workflow file for this run

name: Format code
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
ref: ${{ github.head_ref }}
- name: ⬢ Enable Corepack
shell: bash
run: npm install --global --force corepack
- uses: actions/setup-node@v7
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.2.0
with:
commit_message: 'chore: apply formatting changes'
branch: ${{ github.head_ref }}