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 536e7e6588 - Show all commits

View file

@ -58,12 +58,18 @@ jobs:
- name: Build Site - name: Build Site
run: yarn build run: yarn build
- name: Start Dev Server - name: Start Server
run: yarn preview & run: yarn preview &
- name: Run Unlighthouse for Desktop - name: Run Unlighthouse for Desktop
run: unlighthouse-ci --build-static --desktop --outputPath reports/desktop run: unlighthouse-ci --build-static --desktop --outputPath reports/desktop
- name: Refresh Server
run: |
if ! pgrep -f "node /usr/bin/yarn" ; then
yarn preview &;
fi
- name: Run Unlighthouse for Mobile - name: Run Unlighthouse for Mobile
run: unlighthouse-ci --build-static --mobile --outputPath reports/mobile run: unlighthouse-ci --build-static --mobile --outputPath reports/mobile