Rewrite page in Svelte 5 #49

Merged
Neshura merged 94 commits from rewrite/svelte into main 2024-01-06 14:12:09 +00:00
Showing only changes of commit 2f02f7cabb - Show all commits

View file

@ -29,10 +29,15 @@ jobs:
- name: Install Dependencies - name: Install Dependencies
run: yarn install run: yarn install
- name: Add Unlighthouse - name: Install Chromium for Unlighthouse
run: | run: |
echo "apt update && apt install -y chromium" echo "apt update && apt install -y chromium"
apt update && apt install -y chromium apt update && apt install -y chromium
echo 'export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox" >> /etc/chromium.d/default-flags'
echo 'export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox"' >> /etc/chromium.d/default-flags
- name: Add Unlighthouse
run: |
echo "yarn global add @unlighthouse/cli" echo "yarn global add @unlighthouse/cli"
yarn global add @unlighthouse/cli yarn global add @unlighthouse/cli
@ -50,20 +55,17 @@ jobs:
echo "Version is: '$VERSION'"; echo "Version is: '$VERSION'";
fi fi
- name: Build website - name: Build Site
run: yarn build run: yarn build
- name: Install Chromium for Unlighthouse - name: Start Dev Server
run: | run: yarn preview &
echo "apt update && apt install -y chromium"
apt update && apt install -y chromium
echo 'export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox" >> /etc/chromium.d/default-flags'
echo 'export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox"' >> /etc/chromium.d/default-flags
- name: Add Unlighthouse - name: Run Unlighthouse for Desktop
run: | run: unlighthouse-ci --build-static --desktop --outputPath reports/desktop
echo "yarn global add @unlighthouse/cli"
yarn global add @unlighthouse/cli - name: Run Unlighthouse for Mobile
run: unlighthouse-ci --build-static --mobile --outputPath reports/mobile
- name: Uploading Lighthouse Reports - name: Uploading Lighthouse Reports
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3