Skip to content

Commit

Permalink
test: refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Dec 5, 2023
1 parent e30a63f commit 977f13a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: npm

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions src/tests/test_zksync_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ verify_result () {
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo ""
echo -----------> SUCCESS <-----------
echo "-----------> SUCCESS <-----------"
else
echo ""
echo -----------> FAILED <-----------
echo "-----------> FAILED <-----------"
fi
}

Expand Down

0 comments on commit 977f13a

Please sign in to comment.