Skip to content

Commit

Permalink
update directory for running
Browse files Browse the repository at this point in the history
  • Loading branch information
ncorriveau committed Jun 13, 2024
1 parent ae904f0 commit 9c1d502
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: |
cd src/frontend
npm run prettier-check

0 comments on commit 9c1d502

Please sign in to comment.