Compare commits

...

7 commits
0.1.3 ... main

Author SHA1 Message Date
6569bc3e50 Merge pull request 'Bump forgejo-release to v2' (#1) from actions-update into main
Reviewed-on: https://forgejo.neshweb.net///CI-Docker-Images/unlighthouse/pulls/1
2024-08-06 12:27:06 +00:00
9357e8f1c0 Bump forgejo-release to v2 2024-08-06 12:26:59 +00:00
8850943428
Added description label
All checks were successful
/ build (push) Successful in 3m6s
/ release (push) Successful in 6s
2024-06-20 19:34:43 +02:00
6fc76e29d7
Reverted to bookwork
All checks were successful
/ release (push) Successful in 6s
/ build (push) Successful in 2m39s
2024-06-20 19:27:38 +02:00
7efab10371
Bumped chromium dependency
All checks were successful
/ release (push) Successful in 7s
/ build (push) Successful in 2m21s
2024-06-20 18:48:40 +02:00
429b05cca5
Bumped version of image
Some checks failed
/ release (push) Has been skipped
/ build (push) Failing after 44s
2024-06-20 18:46:59 +02:00
056ffe9b65
Bumped unlighthouse-ci and chromium versions, lighthouse 12 support
Some checks failed
/ release (push) Has been skipped
/ build (push) Failing after 1m11s
2024-06-20 18:38:41 +02:00
3 changed files with 7 additions and 4 deletions

View file

@ -27,7 +27,7 @@ jobs:
runs-on: docker
steps:
- name: Release New Version
uses: actions/forgejo-release@v1
uses: actions/forgejo-release@v2
with:
direction: upload
url: https://forgejo.neshweb.net

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.vscode/*

View file

@ -1,13 +1,15 @@
FROM node:20.10.0-bookworm
FROM node:20.14.0-bookworm
LABEL authorname="firq"
LABEL description="unlighthouse container for ci-based lighthouse testing"
WORKDIR /unlighthouse
# renovate: datasource=repology depName=debian_12/chromium versioning=loose
ENV CHROMIUM_VERSION="120.0.6099.129-1~deb12u1"
ENV CHROMIUM_VERSION="126.0.6478.114-1~deb12u1"
ENV NODE_ENV='production'
# Update path so executable can be run globally
ENV PATH="/unlighthouse/node_modules/.bin:${PATH}"
RUN apt-get update && apt-get -y install --no-install-recommends chromium=${CHROMIUM_VERSION} procps && rm -rf /var/lib/apt/lists/*
RUN npm install @unlighthouse/cli puppeteer
RUN npm install @unlighthouse/cli@0.13.1 puppeteer