From 52376108db3b8433b692f9d96a99dd80c3a50b7a Mon Sep 17 00:00:00 2001 From: Nodar Ambroladze Date: Fri, 9 Feb 2024 17:15:31 +0100 Subject: [PATCH] Fix script path in testnode.bash --- .github/workflows/testnode.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testnode.bash b/.github/workflows/testnode.bash index 7fa18901..742b30f1 100755 --- a/.github/workflows/testnode.bash +++ b/.github/workflows/testnode.bash @@ -2,7 +2,7 @@ # The script starts up the test node (with timeout 1 minute), with option to # run l2 transactions to make sure node is working -timeout 60 ./nitro-testnode/test-node.bash --init --dev || exit_status=$? +timeout 60 ${{ github.workspace }}/nitro-testnode/test-node.bash --init --dev || exit_status=$? if [ -n "$exit_status" ] && [ $exit_status -ne 0 ] && [ $exit_status -ne 124 ]; then echo "Testnode failed."