Skip to content

npm: bump @typescript-eslint/eslint-plugin from 6.9.0 to 6.17.0 #564

npm: bump @typescript-eslint/eslint-plugin from 6.9.0 to 6.17.0

npm: bump @typescript-eslint/eslint-plugin from 6.9.0 to 6.17.0 #564

Workflow file for this run

name: Checks
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
# tests:
# name: Unit Tests
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Install
# uses: ./.github/composite-actions/install
# - name: Run tests
# run: pnpm test
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint
run: pnpm lint
env:
NODE_OPTIONS: '--max-old-space-size=4096'
types:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run TypeScript type check
run: pnpm typecheck