This repository was archived by the owner on May 31, 2026. It is now read-only.
chore(deps): update pnpm to v10.32.1 (#775) #314
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: | |
| branches: | |
| - main | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code using Git | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| # Needs access to push to main | |
| token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
| - name: Install Tools & Dependencies | |
| uses: ./.github/actions/install | |
| - name: Format code | |
| run: pnpm run format:ci | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # v5 | |
| with: | |
| commit_message: '[ci] format' | |
| branch: ${{ github.head_ref }} | |
| commit_user_name: bot | |
| commit_user_email: bot@tuhuratech.org.nz |