chore(deps): update all dependencies #711
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: ['main'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - uses: ./.github/actions/setup-pnpm | |
| - name: Fix Frontend lint issues | |
| run: pnpm -r lint --fix | |
| - name: Format Frontend code | |
| run: pnpm prettier --write . | |
| - name: Format Backend code | |
| run: dotnet format --severity info | |
| - uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 |