From 185ba5c85915ad48ca614a1e4da28c823c1fb0f8 Mon Sep 17 00:00:00 2001 From: Ramona Hartinger Date: Mon, 16 Sep 2024 07:11:09 +0200 Subject: [PATCH] ci: added ci step to eslint pipeline --- .github/workflows/lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2ddeea5..76b465a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,6 +14,8 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Install dependencies + run: npm ci - name: Run ESLint run: npm run lint