Skip to content

chore(deps): update typescript-eslint monorepo to v8.18.2 #132

chore(deps): update typescript-eslint monorepo to v8.18.2

chore(deps): update typescript-eslint monorepo to v8.18.2 #132

Workflow file for this run

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