1
0
Fork 0
mirror of https://github.com/IRS-Public/direct-file.git synced 2025-06-28 04:25:52 +00:00

Fix working directory issue

Also try to re-run the tests on changes to the workflow file. I may have forgotten to push the last time.
This commit is contained in:
Skippy Williams 2025-06-20 23:41:51 -07:00
parent 38864908d8
commit eb6cc102c4

View file

@ -6,6 +6,7 @@ on:
- '/direct-file/backend/src/main/resources/tax/**' - '/direct-file/backend/src/main/resources/tax/**'
- '/direct-file/backend/src/test/**' - '/direct-file/backend/src/test/**'
- '/direct-file/df-client/df-client-app/src/test/**' - '/direct-file/df-client/df-client-app/src/test/**'
- '/.github/workflows/run-fact-dictionary-tests.yml'
branches: branches:
- '**' - '**'
pull_request: pull_request:
@ -13,6 +14,7 @@ on:
- '/direct-file/backend/src/main/resources/tax/**' - '/direct-file/backend/src/main/resources/tax/**'
- '/direct-file/backend/src/test/**' - '/direct-file/backend/src/test/**'
- '/direct-file/df-client/df-client-app/src/test/**' - '/direct-file/df-client/df-client-app/src/test/**'
- '/.github/workflows/run-fact-dictionary-tests.yml'
branches: [main] branches: [main]
jobs: jobs:
@ -34,7 +36,8 @@ jobs:
node-version: '18.20.4' node-version: '18.20.4'
- name: Install node - name: Install node
run: ../../../npm install run: npm install
working-directory: /direct-file/df-client
- name: Run fact dictionary tests - name: Run fact dictionary tests
run: npm run test factDictionaryTests run: npm run test factDictionaryTests