chore(deps): update pnpm to v10.28.1 #768
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: autofix.ci # needed to securely identify the workflow | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/-1 | |
| cache: "pnpm" | |
| - name: 📦 Install dependencies | |
| run: pnpm install | |
| - name: 🚧 Set up project | |
| run: pnpm dev:prepare | |
| - name: 🔠 Fix lint errors | |
| run: pnpm run lint | |
| - name: 🧪 Update snapshots | |
| run: pnpm test -u | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 | |