From 0a747b56094f13f7a9a6e37851e86160da987ef7 Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Tue, 5 Jul 2022 04:30:56 -0700 Subject: [PATCH] Enable running eslint on GHA --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2eaeb495..4c07b96d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,8 @@ jobs: - name: Install run: npm install --prod working-directory: backend - # - name: Lint - # run: npm run lint + - name: Lint + run: npm run lint # - name: Test # run: npm run test - name: Build @@ -39,8 +39,8 @@ jobs: - name: Install run: npm install --prod working-directory: frontend - # - name: Lint - # run: npm run lint + - name: Lint + run: npm run lint # - name: Test # run: npm run test - name: Build