Skip to content

Commit

Permalink
fix: change working directory for the ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabute committed Aug 23, 2024
1 parent 14e2e61 commit d20f554
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
working-directory: app
run: npm install

- name: Lint code
working-directory: app
run: npm run lint

- name: Run tests
working-directory: app
run: npm run test

- name: Run end-to-end tests
run: npm run test:e2e

- name: Run coverage
working-directory: app
run: npm run test:cov

0 comments on commit d20f554

Please sign in to comment.