From 97686e1c87ea1a83271072657de699f598ca8be1 Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Tue, 5 Jul 2022 04:34:43 -0700 Subject: [PATCH] Add working directory to the lint stage on GHA --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c07b96d8..979c107c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: working-directory: backend - name: Lint run: npm run lint + working-directory: backend # - name: Test # run: npm run test - name: Build @@ -41,6 +42,7 @@ jobs: working-directory: frontend - name: Lint run: npm run lint + working-directory: frontend # - name: Test # run: npm run test - name: Build