Skip to content

chore(deps): update typescript-eslint monorepo to v8 (major) #150

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

chore(deps): update typescript-eslint monorepo to v8 (major) #150

Workflow file for this run

name: Automated CI checks
on:
push:
branches: main
pull_request:
branches: main
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Use Node.js 18.x
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Run linter (eslint)
run: npm run lint
- name: Run type check (typescript)
run: npm run typecheck
- name: Run tests (Jest)
run: npm test