This commit is contained in:
parent
5e8335b3cb
commit
a2b865cd15
@ -100,24 +100,22 @@ jobs:
|
|||||||
FORCE_COLOR: "true"
|
FORCE_COLOR: "true"
|
||||||
run: |
|
run: |
|
||||||
yarn build:legacy
|
yarn build:legacy
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Wait for Live Server
|
- name: Wait for Live Server
|
||||||
run: |
|
run: |
|
||||||
attempts=0
|
attempts=0
|
||||||
max_attempts=2
|
max_attempts=2
|
||||||
while ! curl --output /dev/null --silent --head --fail http://live-server:8081; do
|
while ! curl --output /dev/null --silent --head --fail http://live-server:8081; do
|
||||||
if [ $attempts -eq $max_attempts ]; then
|
if [ $attempts -eq $max_attempts ]; then
|
||||||
echo "Live server not ready after $max_attempts attempts"
|
echo "Live server not ready after $max_attempts attempts"
|
||||||
echo "${{ toJson(job) }}"
|
echo "${{ toJson(job) }}"
|
||||||
curl -v http://live-server:8081
|
curl -v http://live-server:8081
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
attempts=$((attempts+1))
|
attempts=$((attempts+1))
|
||||||
echo "Waiting for live-server to be ready... attempt $attempts"
|
echo "Waiting for live-server to be ready... attempt $attempts"
|
||||||
sleep 5
|
sleep 5
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Test HTTP Request
|
- name: Test HTTP Request
|
||||||
run: |
|
run: |
|
||||||
@ -133,16 +131,16 @@ jobs:
|
|||||||
- name: Install Chrome
|
- name: Install Chrome
|
||||||
run: |
|
run: |
|
||||||
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
||||||
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
|
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y google-chrome-stable
|
sudo apt-get install -y google-chrome-stable
|
||||||
|
|
||||||
# Lighthouse Analysis Step
|
# Lighthouse Analysis Step
|
||||||
- name: Lighthouse Analysis
|
- name: Lighthouse Analysis
|
||||||
run: |
|
run: |
|
||||||
yarn add lighthouse
|
yarn add lighthouse
|
||||||
npx lighthouse http://127.0.0.1:8081 --output json --output-path /tmp/lighthouse-report.json --chrome-flags="--headless --no-sandbox --disable-dev-shm-usage"
|
npx lighthouse http://127.0.0.1:8081 --output json --output-path /tmp/lighthouse-report.json --chrome-flags="--headless --no-sandbox --disable-dev-shm-usage"
|
||||||
|
|
||||||
# Notify-Lighthouse Step
|
# Notify-Lighthouse Step
|
||||||
- name: Notify Lighthouse
|
- name: Notify Lighthouse
|
||||||
@ -162,4 +160,5 @@ jobs:
|
|||||||
RSYNC_PASS: ${{ secrets.rsync_master }}
|
RSYNC_PASS: ${{ secrets.rsync_master }}
|
||||||
run: |
|
run: |
|
||||||
scripts/deploy.sh ftp1.webmakers.de $RSYNC_USER $RSYNC_PASS
|
scripts/deploy.sh ftp1.webmakers.de $RSYNC_USER $RSYNC_PASS
|
||||||
#
|
|
||||||
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user