Skip to content

chore(deps-dev): bump eslint from 8.57.0 to 9.2.0 #9

chore(deps-dev): bump eslint from 8.57.0 to 9.2.0

chore(deps-dev): bump eslint from 8.57.0 to 9.2.0 #9

Workflow file for this run

name: Testing CI
on:
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: TSC
run: pnpm run check
- name: Prettier
run: pnpm run check-format
- name: ESLint
run: pnpm run lint