Update reproducer.yml #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-merge | |
on: push | |
jobs: | |
reproducer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Install net-tools | |
run: sudo apt install net-tools | |
- name: Run verdaccio & Wait for it | |
run: | | |
# Start Verdaccio | |
npx verdaccio --config verdaccio.yml & | |
# Wait for verdaccio for up to 10 seconds on IPv6 port | |
npx wait-on http://localhost:4873 --timeout 10000 | |
continue-on-error: true | |
- name: Print open ports | |
run: netstat -ano |