Test latest published version of action #4
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: "Test latest published version of action" | |
on: workflow_dispatch | |
jobs: | |
success: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
- uses: JarvusInnovations/background-action@v1 | |
with: | |
run: | | |
PORT=1212 node test/server.js & | |
PORT=2121 node test/server.js & | |
PORT=3232 node test/server.js & | |
wait-on: | | |
http://localhost:1212/bar | |
tcp:localhost:1212 | |
http://localhost:2121/bar | |
tcp:localhost:2121 | |
http://localhost:3232/bar | |
tcp:localhost:3232 | |
log-output-resume: stderr | |
tail: true | |
wait-for: 5m | |
log-output: stderr,stdout | |
- run: sleep 30 # allow stderr to get output in the background |