Skip to content

test: add test component #8

test: add test component

test: add test component #8

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches:
- main # или ветка, на которую делаются пулл-реквесты
paths:
- '**/*.js'
- '**/*.ts'
- '**/*.tsx'
- '**/*.jsx'
- '.eslintrc.js'
- 'tsconfig.json'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: yarn install
- name: Run ESLint
run: yarn lint