Skip to content

Commit

Permalink
Update reproducer.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vidyasagarnimmagaddi authored Jun 14, 2024
1 parent a1424e8 commit 6a538b7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/reproducer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,13 @@ jobs:
netstat -tuln | grep 4873
- name: Print open ports
run: netstat -ano
- name: Check Verdaccio port and IP version
run: |
echo "Checking if Verdaccio is running on an IPv4 or IPv6 address:"
if netstat -tuln | grep 4873 | grep -q tcp6; then
echo "Verdaccio is running on IPv6."
elif netstat -tuln | grep 4873 | grep -q tcp; then
echo "Verdaccio is running on IPv4."
else
echo "Verdaccio is not running on port 4873."
fi

0 comments on commit 6a538b7

Please sign in to comment.