From 7f15e72f711d32296c753a4b1bbe8f8e1de47c01 Mon Sep 17 00:00:00 2001 From: nachtjasmin Date: Thu, 15 Jun 2023 18:36:23 +0200 Subject: [PATCH] Lint code with GitHub actions --- .github/workflows/codequality.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/codequality.yml b/.github/workflows/codequality.yml index b10e379..02676e4 100644 --- a/.github/workflows/codequality.yml +++ b/.github/workflows/codequality.yml @@ -24,3 +24,12 @@ jobs: name: Commit possible changes with: commit_message: "Format files using prettier" + + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: npm ci + - name: Run eslint + run: npm run lint