Skip to content

chore(deps): bump typescript-eslint from 8.54.0 to 8.56.0 #1582

chore(deps): bump typescript-eslint from 8.54.0 to 8.56.0

chore(deps): bump typescript-eslint from 8.54.0 to 8.56.0 #1582

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
test:
strategy:
matrix:
os: [macOS-latest, windows-latest]
node: [24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Enable Corepack and setup Yarn v4
run: |
corepack enable
yarn --version
- name: Install dependencies for Renovate/Dependabot
if: github.actor == 'renovate[bot]' || github.actor == 'dependabot[bot]'
run: yarn install --no-immutable
- name: Install dependencies for normal PRs
if: github.actor != 'renovate[bot]' && github.actor != 'dependabot[bot]'
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint:ci
- name: Test
run: yarn test