Skip to content

Commit

Permalink
Update GitHub workflow to run tests in specific directory
Browse files Browse the repository at this point in the history
The commit modifies the GitHub action workflows to deal with dependencies and run tests in the 'libs/text-2-measurements' directory. This specifically targets the correct location ensuring that npm operations, install and test, are executed in the necessary directory and not at an erroneous relative path.
  • Loading branch information
mikepsinn committed Mar 26, 2024
1 parent 9220b2d commit 38b980a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/text-2-measurements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
node-version: '14'

- name: Install Dependencies
run: npm ci
run: |
cd libs/text-2-measurements
npm ci
- name: Run Tests
run: npm test
run: |
cd libs/text-2-measurements
npm test

0 comments on commit 38b980a

Please sign in to comment.