dev #9

Merged
Firq merged 33 commits from dev into main 2023-12-21 11:27:53 +00:00
3 changed files with 28 additions and 1 deletions
Showing only changes of commit 8835d0047e - Show all commits

View file

@ -60,7 +60,7 @@ jobs:
- name: Install Dependencies
run: npm install @unlighthouse/cli puppeteer
- name: Run unlighthouse
run: node_modules/.bin/unlighthouse-ci --site website:8081
run: node_modules/.bin/unlighthouse-ci
- name: Upload reports
uses: actions/upload-artifact@v3
with:

View file

@ -0,0 +1,24 @@
on:
push:
tags:
- '[0-9]+\.[0-9]+\.[0-9]+unlighthouse[0-9]+'
jobs:
unlighthouse:
needs: [publish]
if: success()
runs-on: docker
container: registry.gitlab.com/gitlab-ci-utils/lighthouse:latest
services:
website:
image: forgejo.neshweb.net/firq/firq-dev-website:preview
steps:
- name: Install Dependencies
run: npm install @unlighthouse/cli puppeteer
- name: Run unlighthouse
run: node_modules/.bin/unlighthouse-ci
- name: Upload reports
uses: actions/upload-artifact@v3
with:
name: unlighthouse-reports
path: unlighthouse-reports/

View file

@ -6,5 +6,8 @@ export default {
budget: 90,
buildStatic: true
},
server: {
hostname: 'website:8081'
},
outputPath: "unlighthouse-reports",
}