lighthouse
Some checks failed
deploy to production / deploy (push) Failing after 52s

This commit is contained in:
Robin Grenzdörfer 2023-12-06 08:58:28 +00:00
parent 1bf22abc8f
commit 96364fbf55

View File

@ -33,10 +33,10 @@ jobs:
SECURITY_ALLOWUPPERPATHS: "true"
SECURITY_ALLOWRELATIVEPATHS: "true"
#live-server:
# image: gitbase.de/robin/live-server
# ports:
# - 80:80
live-server:
image: gitbase.de/robin/live-server
ports:
- 8081:8081
steps:
- uses: actions/checkout@v3
@ -84,20 +84,20 @@ jobs:
run: |
docker stop live-server-container
docker rm live-server-container
- name: Start Live Server
#-v ${{ github.workspace }}:/usr/src/app
run: |
ls -la
echo ${{ github.workspace }}
pwd
docker pull gitbase.de/robin/live-server:latest
docker run -d --name live-server-container -p 8081:8081 gitbase.de/robin/live-server:latest
# - name: Start Live Server
#-v ${{ github.workspace }}:/usr/src/app
# run: |
# ls -la
# echo ${{ github.workspace }}
# pwd
# docker pull gitbase.de/robin/live-server:latest
# docker run -d --name live-server-container -p 8081:8081 gitbase.de/robin/live-server:latest
- name: Wait for Live Server
run: |
attempts=0
max_attempts=4
while ! curl --output /dev/null --silent --head --fail http://127.0.0.1:8081; do
while ! curl --output /dev/null --silent --head --fail http://live-server:8081; do
if [ $attempts -eq $max_attempts ]; then
echo "Live server not ready after $max_attempts attempts"
echo "Printing container logs:"