Skip to content

Update typescript-eslint monorepo to v8.53.0 (#860) #8281

Update typescript-eslint monorepo to v8.53.0 (#860)

Update typescript-eslint monorepo to v8.53.0 (#860) #8281

Workflow file for this run

name: CI
on: [merge_group, push, pull_request, workflow_dispatch]
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout Repository
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@65d868f8d4d85d7d4abb7de0875cde3fcc8798f5
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Cache Dependencies
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn install
- name: Run Linting
run: yarn lint
- name: Run Unit Tests
run: yarn test