Skip to content

build(deps): update typescript-eslint monorepo to v8 (major) #10175

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

build(deps): update typescript-eslint monorepo to v8 (major) #10175

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Compile TypeScript
run: yarn run build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Lint
run: yarn run lint
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Check formatting with Prettier
run: yarn run style