chore(deps): update dependency typescript to v7 #38
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 | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| - uses: ./.github/actions/setup | |
| - run: | | |
| pnpm lint:fix | |
| pnpm deps:sync | |
| pnpm sync | |
| pnpm gen | |
| pnpm fmt | |
| - run: | | |
| if ! git diff --quiet; then | |
| echo "ββββββββββββββββββββββββββββββββββββββββ" | |
| echo "The following files are not up to date" | |
| echo "ββββββββββββββββββββββββββββββββββββββββ" | |
| echo "" | |
| git diff --name-only \ | |
| | sed 's/^/ - /' | |
| echo "" | |
| echo "ββββββββββββββββββββββββββββββββββββββββ" | |
| echo "Actual diff:" | |
| echo "ββββββββββββββββββββββββββββββββββββββββ" | |
| echo "" | |
| git --no-pager diff | |
| else | |
| echo "No changes detected. All generated files are up to date." | |
| fi | |
| - uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1 |