From 099142a94bb37b8356c2bc98d7f52c308122ed60 Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Fri, 15 Nov 2024 10:57:24 +1300 Subject: [PATCH] ci: fix ui test path --- .github/workflows/ui-tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 6105f7e3..87411b39 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -94,6 +94,10 @@ jobs: MAILSLURP_API_KEY: ${{ secrets.MAILSLURP_API_KEY }} BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} - working-directory: sample/Tests - run: ${{ matrix.test_script }} + run: | + pwd + ls -la + cd unity-immutable-sdk/sample/Tests + chmod +x ./${{ matrix.test_script }} + ./${{ matrix.test_script }} \ No newline at end of file