Skip to content

build(deps): update dependency eslint to v8.49.0 #8704

build(deps): update dependency eslint to v8.49.0

build(deps): update dependency eslint to v8.49.0 #8704

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