From f18b8bd7f8473f9d90c8dfd0e2584715df3d9e81 Mon Sep 17 00:00:00 2001 From: Pavlo Karatsiuba Date: Fri, 20 Jan 2023 19:36:01 +0100 Subject: [PATCH] Add eslint check on CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fa4cd232..b8885ec7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,12 @@ jobs: - name: Installing dependencies run: npm ci + - name: Installing ESLint + run: npm i -g eslint + + - name: Run ESLint + run: eslint . --ext .ts + - name: Installing Codecov run: npm i -g codecov