From eb6cc102c4e1d9f900ddac787fb89871051fb175 Mon Sep 17 00:00:00 2001 From: Skippy Williams Date: Fri, 20 Jun 2025 23:41:51 -0700 Subject: [PATCH] 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. --- .github/workflows/run-fact-dictionary-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-fact-dictionary-tests.yml b/.github/workflows/run-fact-dictionary-tests.yml index b0530a6..f63bd39 100644 --- a/.github/workflows/run-fact-dictionary-tests.yml +++ b/.github/workflows/run-fact-dictionary-tests.yml @@ -6,6 +6,7 @@ on: - '/direct-file/backend/src/main/resources/tax/**' - '/direct-file/backend/src/test/**' - '/direct-file/df-client/df-client-app/src/test/**' + - '/.github/workflows/run-fact-dictionary-tests.yml' branches: - '**' pull_request: @@ -13,6 +14,7 @@ on: - '/direct-file/backend/src/main/resources/tax/**' - '/direct-file/backend/src/test/**' - '/direct-file/df-client/df-client-app/src/test/**' + - '/.github/workflows/run-fact-dictionary-tests.yml' branches: [main] jobs: @@ -34,7 +36,8 @@ jobs: node-version: '18.20.4' - name: Install node - run: ../../../npm install + run: npm install + working-directory: /direct-file/df-client - name: Run fact dictionary tests run: npm run test factDictionaryTests