From 4ab45675cf5f6306378cedd6e8d4dcbb777c2724 Mon Sep 17 00:00:00 2001 From: Ingo Reitz <9l@9lo.re> Date: Tue, 9 Jul 2024 19:41:15 +0200 Subject: [PATCH] Add Lighthouse check --- .github/workflows/lighthouse.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/lighthouse.yml diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml new file mode 100644 index 00000000..e1435d13 --- /dev/null +++ b/.github/workflows/lighthouse.yml @@ -0,0 +1,15 @@ +name: Lighthouse audit +on: + pull_request: + branches: main +jobs: + lighthouse: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Audit URLs using Lighthouse + uses: treosh/lighthouse-ci-action@v12 + with: + urls: | + https://docs.chrultrabook.com/ + uploadArtifacts: true \ No newline at end of file