From c06e0083fa0e4b7832a3f9ee5825bfc486c4e3b2 Mon Sep 17 00:00:00 2001 From: Rossella Ferrandino <39148794+RossellaFer@users.noreply.github.com> Date: Thu, 25 Apr 2024 11:35:15 +0200 Subject: [PATCH] #5 update github action --- .github/workflows/lighthouse-ci.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lighthouse-ci.yml b/.github/workflows/lighthouse-ci.yml index dcb547b..2914121 100644 --- a/.github/workflows/lighthouse-ci.yml +++ b/.github/workflows/lighthouse-ci.yml @@ -1,15 +1,16 @@ -name: CI -on: [push] +name: Audit live site +on: push + jobs: - lighthouseci: + audit: runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job steps: - - name: Lighthouse Audit - uses: jakejarvis/lighthouse-action@master - with: - url: 'https://womeninsoftware.jp/' - - uses: actions/upload-artifact@master - with: - name: report - path: './report' \ No newline at end of file + - name: Audit live URL + uses: jakejarvis/lighthouse-action@master + with: + url: 'https://womeninsoftware.jp/' + - name: Upload results as an artifact + uses: actions/upload-artifact@master + with: + name: report + path: './report' \ No newline at end of file