/
githubmirror
/
trpc
Обзор
Документация
Войти
/
githubmirror
/
trpc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/lint.yml
43 строки
1 KB
renovate[bot]
chore(deps): update actions/checkout action to v6 (#7055)
19 дек 2025, 15:55
Не верифицирован
19 дек 2025, 15:55
1cd3c68
Код
Авторство
О чём код?
name: autofix.ci # for "security reasons", this has to be named autofix.ai permissions: contents: read on: pull_request: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: autofix: name: 'Lint and auto-fix' runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v6 with: fetch-depth: 0 - uses: ./.github/setup - name: Run ts-prune run: pnpm lint-prune # <autofixing> - run: pnpm turbo lint -- --fix if: ${{ failure() || success() }} - run: pnpm manypkg fix if: ${{ failure() || success() }} - run: pnpm format-fix if: ${{ failure() || success() }} # </autofixing> # commit autofixes - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef if: ${{ failure() || success() }} with: commit-message: 'chore: apply lint and formatting fixes' fail-fast: false