Skip to content

Commit

Permalink
Fixing relative path issues with executing the smoke-test script
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Aug 16, 2024
1 parent 81c56e6 commit 7816532
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,17 @@ jobs:
- name: Print App Logs
run: cat server/src/test/resources/app.log

- name: Print Working Directory
working-directory: server/src/test/resources/
run: pwd

- name: List Files in Working Directory
working-directory: server/src/test/resources/
run: ls -la

- name: Smoke Test
working-directory: server/src/test/resources
run: smoke-test.sh app.log
working-directory: server/src/test/resources/
run: ./smoke-test.sh app.log

- name: Kill application
run: kill $APP_PID

0 comments on commit 7816532

Please sign in to comment.