From 8d4cd53d621c151650bfb114bec2fbd74655e66f Mon Sep 17 00:00:00 2001 From: Axeloooo Date: Sun, 4 Feb 2024 15:30:10 -0700 Subject: [PATCH] ci: Linting workflow implemented --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdf910f..b5de04f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,19 @@ on: - dev jobs: + lint: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install dependencies + run: cd backend && npm install + + - name: Lint + run: cd backend && npm run lint + build: runs-on: ubuntu-latest