From 9c1d502b0a2b56a9da5bd3a54e9892000bc1a29a Mon Sep 17 00:00:00 2001 From: Nicko Corriveau Date: Thu, 13 Jun 2024 06:48:29 -0400 Subject: [PATCH] update directory for running --- .github/workflows/deployment.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index 5259641..a22068d 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -22,10 +22,16 @@ jobs: node-version: '18.7.0' - name: Install dependencies - run: npm install + run: | + cd src/frontend + npm install - name: Run ESLint - run: npm run lint + run: | + cd src/frontend + npm run lint - name: Run Prettier - run: npm run prettier-check \ No newline at end of file + run: | + cd src/frontend + npm run prettier-check \ No newline at end of file