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