mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 15:31:21 +00:00
feat: unlighthouse-ci command to include site URL
This commit is contained in:
parent
de58ea0fd5
commit
91de6a37d6
2 changed files with 6 additions and 1 deletions
2
.github/workflows/unlighthouse.yaml
vendored
2
.github/workflows/unlighthouse.yaml
vendored
|
@ -85,7 +85,7 @@ jobs:
|
|||
-F "password=${{ secrets.TEST_USER_PASSWORD }}" \
|
||||
--verbose 2>&1 | awk -F'pb_auth=' '/pb_auth/{print $2;exit}' | awk -F';' '{print $1}')
|
||||
|
||||
unlighthouse-ci
|
||||
unlighthouse-ci --site "$SCAN_URL"
|
||||
|
||||
- name: Upload report to Cloudflare pages
|
||||
uses: cloudflare/wrangler-action@v3.4.1
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
FROM alpine:latest
|
||||
|
||||
RUN addgroup -S nonroot \
|
||||
&& adduser -S nonroot -G nonroot
|
||||
|
||||
USER nonroot
|
||||
|
||||
ARG PB_VERSION=0.21.3
|
||||
|
||||
RUN apk add --no-cache \
|
||||
|
|
Loading…
Reference in a new issue