Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): Add multiple tries to wget step.
Browse files Browse the repository at this point in the history
petejohanson committed Nov 14, 2023
1 parent 5ef994b commit 395e1df
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
@@ -401,17 +401,15 @@ jobs:
run: cd docs && npm run prettier:check
- name: Test docs start (webpack-dev-server)
run: cd docs && timeout -s SIGINT 60 npm run start &
- run: sleep 20
- name: Test docs wget (webpack-dev-server)
run: wget http://localhost:3000
- run: sleep 10
run: wget --waitretry=60 http://localhost:3000
- run: sleep 60
- name: Test docs build (webpack)
run: cd docs && npm run build
- name: Test docs serve (webpack)
run: cd docs && timeout -s SIGINT 10 npm run serve &
- run: sleep 5
run: cd docs && timeout -s SIGINT 30 npm run serve &
- name: Test docs wget (webpack)
run: wget http://localhost:3000
run: wget --waitretry=30 http://localhost:3000
- name: Test less
run: less --version
- name: Test PAGER

0 comments on commit 395e1df

Please sign in to comment.