This repository was archived by the owner on May 31, 2026. It is now read-only.
chore(deps): update typescript-eslint monorepo to v8.57.2 #1783
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| merge_group: | |
| pull_request: | |
| # Automatically cancel in-progress actions on the same branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| astrocheck: | |
| name: Check for type issues with astro check | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_COLOR: true | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Install Tools & Dependencies | |
| uses: ./.github/actions/install | |
| - name: Run Check | |
| run: pnpm run check | |
| eslint: | |
| name: Check for code issues with ESLint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Install Tools & Dependencies | |
| uses: ./.github/actions/install | |
| - name: Run Check | |
| run: pnpm run lint:eslint |