build(deps): update dependency eslint to v9 #10140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |