Add Chromium --no-sandbox flag

This commit is contained in:
Neshura 2024-01-02 03:16:41 +01:00
parent af2762028b
commit 1dee471ea5
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -53,11 +53,16 @@ jobs:
- name: Build website - name: Build website
run: yarn build run: yarn build
- name: Run Unlighthouse - name: Install Chromium for Unlighthouse
run: | run: |
yarn dev & echo "apt update && apt install -y chromium"
unlighthouse-ci --build-static --desktop --outputPath reports/desktop apt update && apt install -y chromium
unlighthouse-ci --build-static --mobile --outputPath reports/mobile echo export CHROMIUM_FLAGS="\$CHROMIUM_FLAGS --no-sandbox" >> /etc/chromium.d/default-flags
- name: Add Unlighthouse
run: |
echo "yarn global add @unlighthouse/cli"
yarn global add @unlighthouse/cli
- name: Uploading Lighthouse Reports - name: Uploading Lighthouse Reports
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3