Skip to content

Commit

Permalink
Add localhost:8080 host to hostfile for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
michhyun1 committed Dec 2, 2024
1 parent c8f65cb commit 4ab9421
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/setup-integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,9 @@ runs:
- name: Clean Install
run: npm ci
shell: bash
- name: Add localhost 8080 host to /etc/hosts for Linux only
shell: bash
if: runner.os == 'Linux'
run: |
sudo echo "127.0.0.1 localhost:8080" | sudo tee -a /etc/hosts

0 comments on commit 4ab9421

Please sign in to comment.