chore(deps): update typescript-eslint monorepo to v8.51.0 #1332
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: QA | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| env: | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Build packages | |
| run: pnpm run build | |
| commitlint: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Run commitlint | |
| run: pnpm commitlint --from=${{ github.sha }} | |
| manypkg: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Run manypkg | |
| run: pnpm manypkg check | |
| eslint: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Run eslint | |
| run: pnpm run lint | |
| tsc: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Run tsc | |
| run: pnpm run ts | |
| prettier: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Run prettier | |
| run: pnpm run format |