Skip to content

Commit

Permalink
Fix script path in testnode.bash
Browse files Browse the repository at this point in the history
  • Loading branch information
anodar committed Feb 9, 2024
1 parent 5219ee2 commit 5237610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testnode.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 5237610

Please sign in to comment.