Skip to content

Commit

Permalink
ci: set working directory for front end unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Oct 7, 2024
1 parent 47a886b commit f57d187
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
test-unit:
name: Unit tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/ClientApp

steps:
- name: ⬇️ Set up code
Expand All @@ -30,6 +33,8 @@ jobs:

- name: 📥 Download dependencies
run: npm ci
working-directory: ${{env.working-directory}}

- name: 🧪 Run tests
run: npm test
working-directory: ${{env.working-directory}}

0 comments on commit f57d187

Please sign in to comment.